mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-01 11:22:24 +02:00
Allow access to signup page
Delete also the version_beta page
This commit is contained in:
parent
2bc8d1be37
commit
9e5fad85d3
2 changed files with 1 additions and 22 deletions
|
@ -1,16 +0,0 @@
|
|||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}Version beta{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<p class="desktop-hidden mobile-content-title">
|
||||
{% block content_title %}Ceci est une version beta{% endblock %}
|
||||
</p>
|
||||
<div class="box">
|
||||
<p>Bonjour, et merci de visiter la Chariotte !</p>
|
||||
<p>Elle est en pleine construction. Si vous voulez bien faire partie des testeurs et de testeuses motivés de cette première version beta,
|
||||
et faire quelques retours, n'hésitez pas à <a href="mailto:laetitia@chariotte.fr">envoyer un mail</a> pour avoir accès à la page de création de compte !</p>
|
||||
|
||||
<p>A très vite !</p>
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -5,11 +5,6 @@ from . import views
|
|||
|
||||
app_name = "accounts"
|
||||
urlpatterns = [
|
||||
path("inscription/", views.SignUpView.as_view(), name="signup-authorized"),
|
||||
path(
|
||||
"version-beta/",
|
||||
TemplateView.as_view(template_name="registration/beta_version.html"),
|
||||
name="signup",
|
||||
),
|
||||
path("inscription/", views.SignUpView.as_view(), name="signup"),
|
||||
path("", include("django.contrib.auth.urls")),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue