diff options
| author | Daniel Hader <[email protected]> | 2026-06-05 19:29:40 -0500 |
|---|---|---|
| committer | Daniel Hader <[email protected]> | 2026-06-05 19:29:40 -0500 |
| commit | c071aca5c5c16d56aafe38ace2b2c158e1b875fc (patch) | |
| tree | aa947a0f6fa53be3de6fb879aa5c4d96bc087cf1 /static/register.html | |
| parent | 3ac68b8b59f150e08731a62026ce3ac825655614 (diff) | |
server text sanitation, username/email filters, and code length measurement
Diffstat (limited to 'static/register.html')
| -rw-r--r-- | static/register.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/static/register.html b/static/register.html index d7e183c..9f3b651 100644 --- a/static/register.html +++ b/static/register.html @@ -21,6 +21,8 @@ <span id="error-message" style="color: red"></span> <br><br> </div> + <p>Usernames should consist only of letters, numbers, underscores, and hyphens.</p> + <p>To help mitigate unauthorized access to my server, a registration code is required to create an account. Please see Daniel for the code.</p> <label for="register-email">Email</label><br> <input type="text" id="register-email" name="email"> <br><br> @@ -30,6 +32,9 @@ <label for="register-password">Password</label><br> <input type="password" id="register-password" name="password"> <br><br> + <label for="register-code">Registration Code</label><br> + <input type="password" id="register-code" name="register_code"> + <br><br> <input type="submit" value="Register"> </form> |
