diff options
author | Jonas Kohl | 2024-10-19 12:38:45 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-10-19 12:38:45 +0200 |
commit | f490626b8a2ff360c4a914615484ea6e5bf8cdee (patch) | |
tree | 96cbbcea2a63283b44186a32fcf6528f692f6523 /src/application/templates/modern/login.twig | |
parent | 3c8f4f695f1b9ec7a188b85e0ce38bc69c697008 (diff) |
Add modern theme
Diffstat (limited to 'src/application/templates/modern/login.twig')
-rw-r--r-- | src/application/templates/modern/login.twig | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/application/templates/modern/login.twig b/src/application/templates/modern/login.twig new file mode 100644 index 0000000..83b3f59 --- /dev/null +++ b/src/application/templates/modern/login.twig @@ -0,0 +1,46 @@ +{% set title = __("Log in") %} +{% set formId = "login" %} +{% set formError = getAndClearFormError(formId) %} + +{% extends "base.twig" %} + +{% block content %} + +<div class="page-header"> + <h1>{{ __("Log in") }}</h1> +</div> + +<div class="main-form"> + {% if formError %} + {% include "components/alert_error.twig" with { message: formError } %} + {% endif %} + <form action="{{ g.server.REQUEST_URI }}" method="post"> + <input type="hidden" name="form_id" value="{{ formId }}"> + + <div class="form-group"> + <label for="i_username">{{ __("Username:") }}</label> + <input class="form-control" type="text" id="i_username" name="username" value="{{ lastFormField(formId, "username") }}" required autofocus> + </div> + + <div class="form-group"> + <label for="i_password">{{ __("Password:") }}</label> + <input class="form-control" type="password" id="i_password" name="password" required> + </div> + + <div class="form-group form-actions"> + <button class="btn btn-primary" type="submit">{{ __("Log in") }}</button> + <a class="btn btn-link" href="?_action=pwreset">{{ __("I forgot my password") }}</a> + </div> + + {% if constant("REGISTRATION_ENABLED") %} + <div class="form-group form-additional"> + {{ __("Don't have an account? %link%Register now%/link%", { + "link": '<a href="?_action=register">', + "/link": '</a>', + }) }} + </div> + {% endif %} + </form> +</div> + +{% endblock %} |