diff --git a/app/templates/auth/SignUp.html b/app/templates/auth/SignUp.html
index bc48390540c0ac03329d895d23aa56d22b42acc7..ce1361af66b3d40154f8d4ac496e5dbe96a10bae 100644
--- a/app/templates/auth/SignUp.html
+++ b/app/templates/auth/SignUp.html
@@ -97,9 +97,11 @@
+
-
+
diff --git a/tasks.py b/tasks.py
index 3b00fce51e03b5f42b1d670cd251c312d3461758..f95dfbc2e3f513b8c57a500ac7f9be0b116f51fb 100644
--- a/tasks.py
+++ b/tasks.py
@@ -71,13 +71,13 @@ def celery_create_account(json, session):
email= json['email']
fullname= json['fullname']
reason= json['reason']
- aup= json['aup']
+# aup= json['aup']
queuename= rc_util.encode_name(username)
print(time.strftime("%m-%d-%Y_%H:%M:%S") + '\tUser ' + username + ' added to queue')
send_msg('creating account', room)
print(username)
- rc_util.add_account(username, queuename, email, fullname, reason, aup)
+ rc_util.add_account(username, queuename, email, fullname, reason)
print('sent account info')
print('Waiting for completion...')
rc_util.consume(queuename, routing_key=f'complete.{queuename}', callback=gen_f(room))