diff options
| author | Bobby <[email protected]> | 2025-12-15 14:28:13 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2025-12-15 14:28:13 +0530 |
| commit | e143ba0b4a0fff8448124d86bb94e07742aa0a9b (patch) | |
| tree | 0dce19e2122b60c6a9e1a338fa884ba206be561c /templates/login.django | |
| parent | 5f6e383d3799d39036842e00ae3149be7fafe188 (diff) | |
| download | imageboard-main.tar.xz imageboard-main.zip | |
Diffstat (limited to 'templates/login.django')
| -rw-r--r-- | templates/login.django | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/templates/login.django b/templates/login.django deleted file mode 100644 index 428c260..0000000 --- a/templates/login.django +++ /dev/null @@ -1,44 +0,0 @@ -{% extends 'layouts/main.django' %} - -{% block content %} - <div class="centered-main"> - <div class="bordered-box"> - <img src="/static/images/25631a9833b39de4053f9eed8b2d3ae6.webp" alt="Login Image" class="q-img" /> - <h1>Login to {{ Appname }}</h1> - <p>Welcome back! Please enter your credentials to continue.</p> - <form action="/login" method="POST" class="ibform"> - {% if Next %} - <input type="hidden" name="next" value="{{ Next }}" /> - {% endif %} - {% if Error %} - <div class="error">{{ Error|safe }}</div> - {% endif %} - <div class="fgroup"> - <div class="fg-main"> - <label for="username">Username</label> - </div> - <div class="fg-sub"> - <input type="text" class="itext" id="username" name="username" required value="{{ Username }}" maxlength="72" autocomplete="username" pattern="[a-zA-Z0-9_-]+" /> - <small>3-72 characters, letters, numbers, underscores, and hyphens only</small> - </div> - </div> - <div class="fgroup"> - <div class="fg-main"> - <label for="password">Password</label> - </div> - <div class="fg-sub"> - <input type="password" id="password" name="password" required minlength="8" /> - </div> - </div> - <div class="fbtngrp"> - <input type="submit" value="Login" /> - <input type="button" value="Clear" onclick="this.form.reset();" /> - <input type="button" value="Forgot Password?" onclick="window.location.href='/account/forgot-password';" /> - </div> - </form> - <p class="text-center"> - Don't have an account? <a href="/register">Register here</a>. - </p> - </div> - </div> -{% endblock %} |
