Software / code / prosody-modules
Comparison
mod_register_web/templates/register.html @ 1227:6015434f0e05
mod_register_web: Move HTML into separate template files
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sat, 30 Nov 2013 18:57:54 +0100 |
| child | 2733:c8161146c698 |
comparison
equal
deleted
inserted
replaced
| 1226:0667624637da | 1227:6015434f0e05 |
|---|---|
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <title>XMPP Account Registration</title> | |
| 6 </head> | |
| 7 <body> | |
| 8 <h1>XMPP Account Registration</h1> | |
| 9 <form action="{path}" method="POST"> | |
| 10 <p>{notice}</p> | |
| 11 <table> | |
| 12 <tbody> | |
| 13 <tr> | |
| 14 <th>Username:</th> | |
| 15 <td><input name="username" required>@{hostname}</td> | |
| 16 </tr> | |
| 17 <tr> | |
| 18 <th>Password:</th> | |
| 19 <td><input name="password" required type="password"></td> | |
| 20 </tr> | |
| 21 {captcha} | |
| 22 <tr> | |
| 23 <td colspan="2"><input type="submit" value="Register!"></td> | |
| 24 </tr> | |
| 25 </tbody> | |
| 26 </table> | |
| 27 </form> | |
| 28 </body> | |
| 29 </html> |