33 lines
1.1 KiB
Smalltalk
33 lines
1.1 KiB
Smalltalk
<!DOCTYPE html>
|
|
<html>
|
|
«head()»
|
|
<body id="register">
|
|
«navigation()»
|
|
«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>
|
|
«footer()»
|
|
</body>
|
|
</html> |