diff --git a/dal/templates/changepassword.html b/dal/templates/changepassword.html index e9a5abf..c6f61e6 100644 --- a/dal/templates/changepassword.html +++ b/dal/templates/changepassword.html @@ -35,6 +35,8 @@ <button type="submit" class="btn choice-btn btn-block"> {% trans "Change Password" %} </button> + <hr> + <a class="btn choice-btn btn-block" href="{% url 'index' %}" role="button">Back to Index</a><br> </div> </form> </div> diff --git a/dal/templates/changeuserdata.html b/dal/templates/changeuserdata.html index f8a76d7..8878ca2 100644 --- a/dal/templates/changeuserdata.html +++ b/dal/templates/changeuserdata.html @@ -34,7 +34,13 @@ {% trans "Change User Data" %} </button> </div> + <hr> + <div class="text-center"> + <a class="btn choice-btn btn-block" href="{% url 'index' %}" role="button">Back to Index</a> + </div> </form> + + </div> </div> </div> diff --git a/dal/templates/deleteaccount.html b/dal/templates/deleteaccount.html index 1828827..3c74052 100644 --- a/dal/templates/deleteaccount.html +++ b/dal/templates/deleteaccount.html @@ -27,6 +27,7 @@ </div> <hr> <div class="text-center"> + <a class="btn choice-btn btn-block" href="{% url 'index' %}" role="button">Back to Index</a><br> <button type="submit" class="btn choicered-btn btn-block"> {% trans "Delete Account" %} </button> diff --git a/dal/templates/seed_list.html b/dal/templates/seed_list.html index 6699db0..9d13640 100644 --- a/dal/templates/seed_list.html +++ b/dal/templates/seed_list.html @@ -25,9 +25,11 @@ </table> <br> <hr> - <div class="text-center"> - <a href="{% url 'account_delete' %}">Delete your account</a><br> - </div> + <form class="form" novalidate> + <div class="text-center"> + <a class="btn choice-btn btn-block" href="{% url 'index' %}" role="button">Back to Index</a><br> + </div> + </form> </div> </div> </div> diff --git a/dal/templates/useroptions.html b/dal/templates/useroptions.html index 1e9c568..d5bae62 100644 --- a/dal/templates/useroptions.html +++ b/dal/templates/useroptions.html @@ -16,6 +16,7 @@ <form class="form"> <a class="btn choice-btn btn-block" href="{% url 'change_data' %}" role="button">{% trans "Change your userdata" %}</a><br> <a class="btn choice-btn btn-block" href="{% url 'change_password' %}" role="button">Change your password</a><br> + <a class="btn choice-btn btn-block" href="{% url 'user_seeds' %}" role="button">Show seeds</a><br> <a class="btn choicered-btn btn-block" href="{% url 'logout' %}" role="button">{% trans "Logout" %}</a><br><br> </form> <br>