aboutsummaryrefslogtreecommitdiff
path: root/app/auth
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-05-08 18:34:11 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-05-08 18:34:11 +0100
commite11bc31b55df43c0ded49672ad96fde9752e4e9e (patch)
tree50c2e590b8d7fb529b48b67756bab526fe257fa7 /app/auth
parentAdd update/credit flags to user table (diff)
downloadAnnotateChange-e11bc31b55df43c0ded49672ad96fde9752e4e9e.tar.gz
AnnotateChange-e11bc31b55df43c0ded49672ad96fde9752e4e9e.zip
Update code for public release
Diffstat (limited to 'app/auth')
-rw-r--r--app/auth/__init__.py4
-rw-r--r--app/auth/email.py4
-rw-r--r--app/auth/forms.py4
-rw-r--r--app/auth/routes.py4
4 files changed, 16 insertions, 0 deletions
diff --git a/app/auth/__init__.py b/app/auth/__init__.py
index c938693..712c39e 100644
--- a/app/auth/__init__.py
+++ b/app/auth/__init__.py
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-
+# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk>
+# License: See LICENSE file
+# Copyright: 2020 (c) The Alan Turing Institute
+
from flask import Blueprint
bp = Blueprint('auth', __name__)
diff --git a/app/auth/email.py b/app/auth/email.py
index 581c9ce..3510938 100644
--- a/app/auth/email.py
+++ b/app/auth/email.py
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-
+# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk>
+# License: See LICENSE file
+# Copyright: 2020 (c) The Alan Turing Institute
+
from flask import current_app, render_template
from app.email import send_email
diff --git a/app/auth/forms.py b/app/auth/forms.py
index 14f390f..ae07a4f 100644
--- a/app/auth/forms.py
+++ b/app/auth/forms.py
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-
+# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk>
+# License: See LICENSE file
+# Copyright: 2020 (c) The Alan Turing Institute
+
from flask import current_app, flash
from flask_wtf import FlaskForm
diff --git a/app/auth/routes.py b/app/auth/routes.py
index 57bd605..62d8dff 100644
--- a/app/auth/routes.py
+++ b/app/auth/routes.py
@@ -1,5 +1,9 @@
# -*- coding: utf-8 -*-
+# Author: G.J.J. van den Burg <gvandenburg@turing.ac.uk>
+# License: See LICENSE file
+# Copyright: 2020 (c) The Alan Turing Institute
+
import datetime
import markdown
import textwrap