Files
ihrm/templates/forgot_password.html
2023-07-11 12:16:40 +05:30

54 lines
2.0 KiB
HTML

{% load static %}
{% load i18n %}
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Login - Horilla Dashboard</title>
<link rel="stylesheet" href="{% static 'build/css/style.min.css' %}" />
</head>
<body>
<div id="main">
<main class="oh-auth">
<div class="oh-alert-container">
{% for message in messages %}
<div class="oh-alert oh-alert--animated {{ message.tags }}">
{{ message }}
</div>
{% endfor %}
</div>
<div class="oh-auth-card">
<h1 class="oh-onboarding-card__title oh-onboarding-card__title--h2 text-center my-3">{% trans "Forgot Password" %}?</h1>
<p class="text-muted text-center">{% trans "Type in your email to reset the password" %}</p>
<form method='post' class="oh-form-group">
{% csrf_token %}
<div class="oh-input-group">
<label class="oh-label" for="email">{% trans "Username" %}</label>
<input type="text" name='email' id="email" class="oh-input w-100" placeholder="e.g. jane.doe@acme.com" autofocus required />
</div>
<button
type='submit'
class="oh-btn oh-onboarding-card__button mt-4 oh-btn--secondary oh-btn--shadow w-100 mb-4"
role="button"
>
{% trans "Send Link" %}
</button>
</form>
</div>
</main>
</div>
<script src="./../build/js/web.frontend.min.js"></script>
<script
type="module"
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"
></script>
<script></script>
</body>
</html>