summaryrefslogtreecommitdiff
path: root/www/register.php
blob: 993b09956bbea23524901b03d3da902cdb691452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php include("header.html");?>
	<link rel="stylesheet" type="text/css" href="register.css">
	
	<div class="register-area">
		<h1 class="register-area"> Register </h1>
		<form id="register-form">
			<input type="text" placeholder="username" name="username" id="username-input" class="register-input" required>
			
			<input type="password" placeholder="password" name="password" id="password-input" class="register-input" required>
			<input type="password" placeholder="repeat password" name="password" id="password-repeat-input" class="register-input" required>
			
			<input type="text" placeholder="invite-key" name="key" id="key-input" class="register-input" required>
			<input type="email" placeholder="email" name="email" id="email-input" class="register-input" required>
			
			<input type="submit" name="register" id="button-input" class="register-input" value="register">
		</form>
	</div>

<?php include("footer.html");?>