diff options
| author | rubenwardy <rw@rubenwardy.com> | 2018-05-29 18:27:33 +0100 |
|---|---|---|
| committer | rubenwardy <rw@rubenwardy.com> | 2018-05-29 18:27:39 +0100 |
| commit | df291db69b68838e1f0c45753e210bc5f059bc08 (patch) | |
| tree | c3afa337c35ea00978e6c3d2b643037882ed7e69 /app/templates | |
| parent | 63a3b5e8727a0a40acd0c81e1d98eddfa4cb6cae (diff) | |
| download | cheatdb-df291db69b68838e1f0c45753e210bc5f059bc08.tar.xz | |
Add email/password sign up
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/users/claim.html | 16 | ||||
| -rw-r--r-- | app/templates/users/user_profile_page.html | 2 |
2 files changed, 17 insertions, 1 deletions
diff --git a/app/templates/users/claim.html b/app/templates/users/claim.html index f561a89..ae8e9c9 100644 --- a/app/templates/users/claim.html +++ b/app/templates/users/claim.html @@ -95,5 +95,21 @@ Creating an Account <input type="submit" value="Next"> </form> </div> + + <div class="box box_grey"> + <h2>Option 3 - Email/password sign up</h2> + + <div class="box-body"> + <p> + <b>Only do this if you don't have a forum account!</b> + </p> + <p> + If you have a forum account, please use one of the other two + options. + </p> + + <a class="button" href="{{ url_for('user.register') }}">Register</a> + </div> + </div> {% endif %} {% endblock %} diff --git a/app/templates/users/user_profile_page.html b/app/templates/users/user_profile_page.html index 304649e..755a158 100644 --- a/app/templates/users/user_profile_page.html +++ b/app/templates/users/user_profile_page.html @@ -32,7 +32,7 @@ Minetest Forum </a> {% elif user == current_user %} - <a href="">Link Forums Account</a> + No forum account {% endif %} {% if (user.forums_username and user.github_username) or user == current_user %} |
