Current prod version

This commit is contained in:
PV Tejas 2026-02-07 17:01:34 +05:30
parent f52d98333e
commit 34c5300608
7 changed files with 32 additions and 11 deletions

View file

@ -11,6 +11,7 @@ bp = Blueprint('auth', __name__, url_prefix='/auth')
@bp.route('/register', methods=('GET', 'POST'))
def register():
return "Admin only", 403
if request.method == 'POST':
username = request.form['username']
password = request.form['password']