diff options
author | 2019-10-20 13:27:44 +0100 | |
---|---|---|
committer | 2019-10-20 13:27:44 +0100 | |
commit | 3512a71bfe89a8efdf8be7ac917cbe13dfe132e2 (patch) | |
tree | 081b8f1341cd49ecf12cc50788a6ca52733d5c99 /pydis_site/templates/home/account | |
parent | Allauth: Re-add GitHub provider, prevent GH signups (diff) |
GH signup prevention, views and templates for settings pages
Diffstat (limited to 'pydis_site/templates/home/account')
-rw-r--r-- | pydis_site/templates/home/account/delete.html | 12 | ||||
-rw-r--r-- | pydis_site/templates/home/account/settings.html | 12 |
2 files changed, 24 insertions, 0 deletions
diff --git a/pydis_site/templates/home/account/delete.html b/pydis_site/templates/home/account/delete.html new file mode 100644 index 00000000..8d68a0e3 --- /dev/null +++ b/pydis_site/templates/home/account/delete.html @@ -0,0 +1,12 @@ +{% extends 'base/base.html' %} +{% load static %} + +{% block title %}Delete Account{% endblock %} + +{% block content %} + {% include "base/navbar.html" %} + + <section class="section"> + + </section> +{% endblock %} diff --git a/pydis_site/templates/home/account/settings.html b/pydis_site/templates/home/account/settings.html new file mode 100644 index 00000000..ba1d38a2 --- /dev/null +++ b/pydis_site/templates/home/account/settings.html @@ -0,0 +1,12 @@ +{% extends 'base/base.html' %} +{% load static %} + +{% block title %}My Account{% endblock %} + +{% block content %} + {% include "base/navbar.html" %} + + <section class="section"> + + </section> +{% endblock %} |