mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-14 15:00:16 +02:00
54 lines
1.6 KiB
HTML
54 lines
1.6 KiB
HTML
{% load staticfiles %}
|
|
{% load i18n %}
|
|
{% load bootstrap %}
|
|
<html>
|
|
<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">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>{{ ALLIANCE_NAME }} - Login</title>
|
|
|
|
<!-- Bootstrap Core CSS -->
|
|
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
|
|
<!-- Custom Fonts -->
|
|
<link href="{% static 'css/font-awesome.min.css' %}" rel="stylesheet" type="text/css">
|
|
<style>
|
|
body {
|
|
background: url('{% static 'img/index_images/index_blank_bg.jpg' %}') no-repeat scroll;
|
|
background-size: 100% 100%;
|
|
}
|
|
|
|
.panel-transparent {
|
|
background: rgba(48, 48, 48, 0.7);
|
|
color: #ffffff;
|
|
}
|
|
|
|
.panel-body {
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container" style="margin-top:150px">
|
|
<div class="col-md-4 col-md-offset-4">
|
|
<div class="panel panel-default panel-transparent">
|
|
<div class="panel-body">
|
|
<h1 class="text-center">{% trans 'Password Reset Success' %}</h1>
|
|
|
|
<p>{% trans "We've emailed you instructions for setting your password. You should be receiving them shortly." %}</p>
|
|
|
|
<p>{% trans "If you don't receive an email, please make sure you've entered the address you registered with, and check your spam folder." %}</p>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|