Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Gelencsér Szabolcs
/
circlestack
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
66720732
authored
Jul 11, 2014
by
Kálmán Viktor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
templates: use the common base.html
parent
a5becb5d
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
38 additions
and
29 deletions
+38
-29
circle/templates/registration/base.html
+10
-17
circle/templates/registration/login.html
+12
-4
circle/templates/registration/password_reset_complete.html
+4
-2
circle/templates/registration/password_reset_confirm.html
+4
-2
circle/templates/registration/password_reset_done.html
+4
-2
circle/templates/registration/password_reset_form.html
+4
-2
No files found.
circle/templates/registration/base.html
View file @
66720732
{% extends "base.html" %}
{% load i18n %}
{% load i18n %}
{% load staticfiles %}
{% load staticfiles %}
{% get_current_language as LANGUAGE_CODE %}
{% get_current_language as LANGUAGE_CODE %}
<html>
<head>
<meta
charset=
"utf-8"
>
<title>
{% block title %}{% endblock %} | CIRCLE
</title>
<meta
name=
"description"
content=
""
>
<meta
name=
"author"
content=
""
>
<link
rel=
"stylesheet"
href=
"//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css"
>
{% block extra_css %}
<link
href=
"//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css"
rel=
"stylesheet"
>
<style
type=
"text/css"
>
<style
type=
"text/css"
>
html
,
body
{
html
,
body
{
background-color
:
#eee
;
background-color
:
#eee
;
...
@@ -77,12 +71,11 @@
...
@@ -77,12 +71,11 @@
display
:
none
;
display
:
none
;
}
}
</style>
</style>
</head>
{% endblock %}
<body>
<div
class=
"container"
>
<div
class=
"content"
>
{% block navbar-brand %}
{% block content %}{% endblock %}
<a
class=
"navbar-brand"
href=
"{% url "
dashboard
.
index
"
%}"
style=
"padding: 10px 15px;"
>
</div>
<img
src=
"{{ STATIC_URL}}dashboard/img/logo.png"
style=
"height: 25px;"
/>
</div>
<!-- /container -->
</a>
</body>
{% endblock %}
</html>
circle/templates/registration/login.html
View file @
66720732
...
@@ -3,10 +3,17 @@
...
@@ -3,10 +3,17 @@
{% load crispy_forms_tags %}
{% load crispy_forms_tags %}
{% get_current_language as LANGUAGE_CODE %}
{% get_current_language as LANGUAGE_CODE %}
{% block title %}{% trans "Login" %}{% endblock %}
{% block title-page %}{% trans "Login" %}{% endblock %}
{% block navbar-brand %}
<a
class=
"navbar-brand"
href=
"{% url "
dashboard
.
index
"
%}"
style=
"padding: 10px 15px;"
>
<img
src=
"{{ STATIC_URL}}dashboard/img/logo.png"
style=
"height: 25px;"
/>
</a>
{% endblock %}
{% block content %}
{% block content %}
<div
class=
"row"
>
<div
class=
"content"
>
<div
class=
"row"
>
{% if form.password.errors or form.username.errors %}
{% if form.password.errors or form.username.errors %}
<div
class=
"login-form-errors"
>
<div
class=
"login-form-errors"
>
{% include "display-form-errors.html" %}
{% include "display-form-errors.html" %}
...
@@ -26,10 +33,11 @@
...
@@ -26,10 +33,11 @@
<a
href=
"{% url "
saml2_login
"
%}"
>
{% trans "Click here!" %}
</a>
<a
href=
"{% url "
saml2_login
"
%}"
>
{% trans "Click here!" %}
</a>
</div>
</div>
{% endif %}
{% endif %}
</div>
</div>
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-sm-12"
>
<div
class=
"col-sm-12"
>
<a
class=
"pull-right"
href=
"{% url "
accounts
.
password-reset
"
%}"
>
{% trans "Forgot your password?" %}
</a>
<a
class=
"pull-right"
href=
"{% url "
accounts
.
password-reset
"
%}"
>
{% trans "Forgot your password?" %}
</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
{% endblock %}
circle/templates/registration/password_reset_complete.html
View file @
66720732
...
@@ -3,10 +3,11 @@
...
@@ -3,10 +3,11 @@
{% load crispy_forms_tags %}
{% load crispy_forms_tags %}
{% get_current_language as LANGUAGE_CODE %}
{% get_current_language as LANGUAGE_CODE %}
{% block title %}{% trans "Password reset complete" %}{% endblock %}
{% block title
-page
%}{% trans "Password reset complete" %}{% endblock %}
{% block content %}
{% block content %}
<div
class=
"row"
>
<div
class=
"content"
>
<div
class=
"row"
>
<div
class=
"login-form-errors"
>
<div
class=
"login-form-errors"
>
{% include "display-form-errors.html" %}
{% include "display-form-errors.html" %}
</div>
</div>
...
@@ -16,5 +17,6 @@
...
@@ -16,5 +17,6 @@
<a
href=
"{% url "
accounts
.
login
"
%}"
>
{% trans "Click here to login" %}
</a>
<a
href=
"{% url "
accounts
.
login
"
%}"
>
{% trans "Click here to login" %}
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
{% endblock %}
circle/templates/registration/password_reset_confirm.html
View file @
66720732
...
@@ -3,10 +3,11 @@
...
@@ -3,10 +3,11 @@
{% load crispy_forms_tags %}
{% load crispy_forms_tags %}
{% get_current_language as LANGUAGE_CODE %}
{% get_current_language as LANGUAGE_CODE %}
{% block title %}{% trans "Password reset confirm" %}{% endblock %}
{% block title
-page
%}{% trans "Password reset confirm" %}{% endblock %}
{% block content %}
{% block content %}
<div
class=
"row"
>
<div>
<div
class=
"row"
>
<div
class=
"login-form-errors"
>
<div
class=
"login-form-errors"
>
{% include "display-form-errors.html" %}
{% include "display-form-errors.html" %}
</div>
</div>
...
@@ -24,5 +25,6 @@
...
@@ -24,5 +25,6 @@
</div>
</div>
{% endif %}
{% endif %}
</div>
</div>
</div>
</div>
</div>
{% endblock %}
{% endblock %}
circle/templates/registration/password_reset_done.html
View file @
66720732
...
@@ -3,10 +3,11 @@
...
@@ -3,10 +3,11 @@
{% load crispy_forms_tags %}
{% load crispy_forms_tags %}
{% get_current_language as LANGUAGE_CODE %}
{% get_current_language as LANGUAGE_CODE %}
{% block title %}{% trans "Password reset done" %}{% endblock %}
{% block title
-page
%}{% trans "Password reset done" %}{% endblock %}
{% block content %}
{% block content %}
<div
class=
"row"
>
<div
class=
"content"
>
<div
class=
"row"
>
<div
class=
"login-form-errors"
>
<div
class=
"login-form-errors"
>
{% include "display-form-errors.html" %}
{% include "display-form-errors.html" %}
</div>
</div>
...
@@ -14,5 +15,6 @@
...
@@ -14,5 +15,6 @@
<div
class=
"pull-right"
><a
href=
"{% url "
accounts
.
login
"
%}"
>
{% trans "Back to login" %}
</a></div>
<div
class=
"pull-right"
><a
href=
"{% url "
accounts
.
login
"
%}"
>
{% trans "Back to login" %}
</a></div>
{% trans "We have sent you an email about your next steps!" %}
{% trans "We have sent you an email about your next steps!" %}
</div>
</div>
</div>
</div>
</div>
{% endblock %}
{% endblock %}
circle/templates/registration/password_reset_form.html
View file @
66720732
...
@@ -3,10 +3,11 @@
...
@@ -3,10 +3,11 @@
{% load crispy_forms_tags %}
{% load crispy_forms_tags %}
{% get_current_language as LANGUAGE_CODE %}
{% get_current_language as LANGUAGE_CODE %}
{% block title %}{% trans "Password reset" %}{% endblock %}
{% block title
-page
%}{% trans "Password reset" %}{% endblock %}
{% block content %}
{% block content %}
<div
class=
"row"
>
<div
class=
"content"
>
<div
class=
"row"
>
<div
class=
"login-form-errors"
>
<div
class=
"login-form-errors"
>
{% include "display-form-errors.html" %}
{% include "display-form-errors.html" %}
</div>
</div>
...
@@ -18,5 +19,6 @@
...
@@ -18,5 +19,6 @@
{% crispy form %}
{% crispy form %}
</form>
</form>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment