| Server IP : 65.108.144.40 / Your IP : 216.73.217.165 Web Server : Apache/2.4.52 (Ubuntu) System : Linux ubuntu-8gb-hel1-1 5.15.0-173-generic #183-Ubuntu SMP Fri Mar 6 13:29:34 UTC 2026 x86_64 User : dev ( 1000) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/erp/templates/ |
Upload File : |
{% 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 - {{white_label_company_name}} ERP</title>
<link rel="apple-touch-icon" sizes="180x180" href="{% static '/images/ui/growthnatives-apple-touch.webp' %}">
<link rel="icon" type="image/png" sizes="32x32" href="{% static '/images/ui/growthnatives-favicon.webp' %}">
<link rel="icon" type="image/png" sizes="16x16" href="{% static '/images/ui/growthnatives-favicon.webp' %}">
<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. eshu@growthnatives.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>