diff options
author | Jonas Kohl | 2024-10-17 10:56:01 +0200 |
---|---|---|
committer | Jonas Kohl | 2024-10-17 10:56:01 +0200 |
commit | fe0f414dc0211a4014581dc03fcfd514ed7ed02d (patch) | |
tree | cd86fc00cd9b7a97eabb9668e0a39e2b4b3e5357 /src/application/templates/bootstrap-3/login.twig | |
parent | e0e89b9fdbf301e0ead944636023947a67aca57d (diff) |
Transition templating to Twig
Diffstat (limited to 'src/application/templates/bootstrap-3/login.twig')
-rw-r--r-- | src/application/templates/bootstrap-3/login.twig | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/src/application/templates/bootstrap-3/login.twig b/src/application/templates/bootstrap-3/login.twig new file mode 100644 index 0000000..63b9867 --- /dev/null +++ b/src/application/templates/bootstrap-3/login.twig @@ -0,0 +1,50 @@ +{% set title = __("Log in") %} +{% set formId = "login" %} +{% set formError = getAndClearFormError(formId) %} + +{% extends "base.twig" %} + +{% block content %} + +<div class="page-header margin-top-0"> + <h1>{{ __("Log in") }}</h1> +</div> + +<div class="col-md-4"></div> + +<div class="well col-md-4"> + {% 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"> + <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"> + {{ __("Don't have an account? %link%Register now%/link%", { + "link": '<a href="?_action=register">', + "/link": '</a>', + }) }} + </div> + {% endif %} + </form> +</div> + +<div class="col-md-4"></div> + +{% endblock %} |