Files
Widerhall/static/templates/subscribe.st
2024-05-19 11:15:24 +00:00

38 lines
1.5 KiB
Smalltalk

<!DOCTYPE html>
<html>
«head()»
<body id="subscribe">
«navigation()»
«userinfo()»
«messages()»
<h1>Widerhall Subscription</h1>
<form method="POST">
<input type="hidden" name="list" value="«data.list»" />
<fieldset>
<legend>Suscribe to "«data.list»"</legend>
<label>
<input type="text" name="name" value="«if(data.user)»«data.user.name»«else»«data.name»«endif»">
Name
</label>
<label>
<input type="text" name="email" value="«if(data.user)»«data.user.email»«else»«data.email»«endif»">
Email
</label>
<label>
<input type="password" name="password">
Password (optional)
</label>
<button type="submit">Subscribe</button>
</fieldset>
<fieldset>
<legend>Password or not?</legend>
<h3>pro password</h3>
You will need a password, if you don`t want anybody except you to un-subscribe you from the list.
Also, if you are about to receive a promotion to a list moderator, you will need a password.
<h3>contra password</h3>
If you won't get a promotion, and just don't want to remember another password, don`t set one.
</fieldset>
</form>
«footer()»
</body>
</html>