-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Small hotfix on password reset URL generation
- Loading branch information
1 parent
781da27
commit 88c72ee
Showing
6 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"MAPBOXTOKEN":"pk.eyJ1IjoibHRvdXphcmQiLCJhIjoiY2lvMGV5OTJhMDB2Y3dka2xrZHpycGlrZiJ9.70MUkG_bCx7MPyIOhwfcKA", | ||
"SERVER_ADDR":"localhost:5000", | ||
"VERSION" : "1.3.0", | ||
"VERSION" : "1.3.1", | ||
"DEBUG":true, | ||
"PROTOCOL": "http" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
<center style="width:100%"> | ||
<table border="0" cellpadding="20" cellspacing="0" width="600" bgcolor="#F8F8F8"> | ||
<tr> | ||
<td style="color:#FFFFFF;background:#3F51B5 url('{{ url_for('static', filename='favicon.png') }}') no-repeat center;text-align:center;"> | ||
<td style="color:#FFFFFF;background:#3F51B5 url('{{ url_for('static', filename='favicon.png', _external=True) }}') no-repeat center;text-align:center;"> | ||
<h1 style="line-height:100%;margin-bottom:5px;">{% block header %}MapIf{% endblock %}</h1> | ||
{% block subheader %}<h2 style="font-size:23px;margin-bottom:10px;color:#BDBDBD;line-height:135%;">SubHeader</h2>{% endblock %} | ||
{% block header_introduction %}<div style="font-size:15px;margin-bottom:0;line-height:135%;">Quick introduction</div>{% endblock %} | ||
|
@@ -18,7 +18,7 @@ <h1 style="line-height:100%;margin-bottom:5px;">{% block header %}MapIf{% endblo | |
<tr> | ||
<td bgcolor="#E1E1E1"> | ||
<div style="font-size:13px;color:#828282!important;text-align:center;line-height:120%;"> | ||
<a href="mailto:[email protected]">Contact</a> - <a href="{{ url_for('root') }}">MapIf</a> - <a href="https://github.com/LoicTouzard/MapIf">MapIf sur Github</a> | ||
<a href="mailto:[email protected]">Contact</a> - <a href="{{ url_for('root', _external=True) }}">MapIf</a> - <a href="https://github.com/LoicTouzard/MapIf">MapIf sur Github</a> | ||
</div> | ||
</td> | ||
</tr> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters