You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
<!DOCTYPE html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8" /> |
|
<script src="jquery"></script> |
|
<script src="js"></script> |
|
<link rel="stylesheet" href="css" /> |
|
</head> |
|
<body id="login"> |
|
«userinfo()» |
|
<h1>Widerhall user registration</h1> |
|
«messages()» |
|
<form method="POST" action="register"> |
|
<fieldset> |
|
<legend>User credentials</legend> |
|
<label> |
|
<input type="text" name="name" value="«data.name»" id="name" /> |
|
Your name |
|
</label> |
|
<label> |
|
<input type="text" name="email" value="«data.email»" id="email" /> |
|
E-Mail Address |
|
</label> |
|
<label> |
|
<input type="password" name="pass" value="" id="password" /> |
|
Password |
|
</label> |
|
<label> |
|
<input type="password" name="pass_repeat" value="" id="password_repeated" /> |
|
Password (repeat) |
|
</label> |
|
<button type="submit">Save new user</button> |
|
</fieldset> |
|
</form> |
|
</body> |
|
</html> |