mirror of
https://git.wownero.com/wownero/YellWOWPages.git
synced 2024-08-15 01:03:25 +00:00
Regex address check
This commit is contained in:
parent
5b719029ee
commit
e879f39c48
1 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
from quart import render_template, request, redirect, url_for, jsonify, Blueprint, abort, flash, send_from_directory, session
|
||||
import re
|
||||
|
||||
from yellow import login_required
|
||||
from yellow.factory import openid
|
||||
|
@ -36,9 +37,7 @@ async def dashboard_address_post():
|
|||
# get FORM POST value 'address'
|
||||
form = await request.form
|
||||
address = form.get('address')
|
||||
if len(address) != 97:
|
||||
raise Exception("Please submit a WOW address")
|
||||
elif not address.isalnum():
|
||||
if not bool(re.match(r'^(WW)\\d[0-9A-Za-z]{94}$', address)):
|
||||
raise Exception("Please submit a WOW address")
|
||||
|
||||
# update user
|
||||
|
|
Loading…
Reference in a new issue