blob: bdac1899aa0e504ac4e5b91ce272e7747ee63810 (
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" action="/register" method='post'>
<input type="text" placeholder="username" name="username" id="username-input" class="register-input" required>
<input type="password" placeholder="password" name="pswd" id="password-input" class="register-input" required>
<input type="password" placeholder="repeat password" name="2ndpswd" 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");?>
|