diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-09-23 15:49:12 +0100 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2019-09-23 15:49:12 +0100 |
| commit | b4b241600704cf1be963a1ff51191eec020434a4 (patch) | |
| tree | 5bf05359e43afa46283c737e084a1208c7e028f5 /app/templates | |
| parent | Bump version (diff) | |
| download | AnnotateChange-b4b241600704cf1be963a1ff51191eec020434a4.tar.gz AnnotateChange-b4b241600704cf1be963a1ff51191eec020434a4.zip | |
Add configuration option for accepting registrations
Diffstat (limited to 'app/templates')
| -rw-r--r-- | app/templates/auth/no_register.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/templates/auth/no_register.html b/app/templates/auth/no_register.html new file mode 100644 index 0000000..9998e66 --- /dev/null +++ b/app/templates/auth/no_register.html @@ -0,0 +1,17 @@ +{% extends "base.html" %} +{% import 'bootstrap/wtf.html' as wtf %} + +{% block styles %} + {{ super() }} +{% endblock %} + +{% block app_content %} +<h1>Register</h1> +<div class="row"> + <div class="col-md-6"> + Thank you for your interest in AnnotateChange. We are not currently looking + for new annotators, so registration has been disabled. If you already have + an account, you can <a href="/auth/login">login here</a>. + </div> +</div> +{% endblock %} |
