forked from ticketfrei/ticketfrei
removed debug messages, small layout changes
This commit is contained in:
parent
87302faf9e
commit
9e70ff6866
|
@ -116,8 +116,6 @@ def confirm_account(encoded_jwt):
|
|||
with open(os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "blacklists", "nbg_blacklist"),
|
||||
"r") as f:
|
||||
default_blacklist = f.read()
|
||||
print(default_goodlist) # debug
|
||||
print(default_blacklist) # debug
|
||||
db.cur.execute("INSERT INTO trigger_bad(user_id, words) VALUES(?, ?);", (get_user_id(email), default_blacklist))
|
||||
db.conn.commit()
|
||||
bottle.response.set_cookie("account", email, secret, path="/")
|
||||
|
@ -132,7 +130,6 @@ def manage_bot():
|
|||
:return: If it returns something, it just refreshes the page.
|
||||
"""
|
||||
email = bottle.request.get_cookie("account", secret=secret)
|
||||
print(email) # debug
|
||||
if email is not None:
|
||||
user_id = get_user_id(email)
|
||||
# get Enable Status from db
|
||||
|
@ -151,7 +148,6 @@ def manage_bot():
|
|||
# Deliver goodlist with a Cookie
|
||||
print("setting goodlist cookies?")
|
||||
resp.set_cookie("goodlist", words, path="/settings")
|
||||
print(words) # debug
|
||||
|
||||
# Get blacklist from db
|
||||
db.cur.execute("SELECT words FROM trigger_bad WHERE user_id=?;", (user_id,))
|
||||
|
@ -159,7 +155,6 @@ def manage_bot():
|
|||
# Deliver badlist with a Cookie
|
||||
print("setting blacklist cookies?")
|
||||
resp.set_cookie("blacklist", words, path="/settings")
|
||||
print(words) # debug
|
||||
|
||||
return resp
|
||||
else:
|
||||
|
|
|
@ -81,6 +81,7 @@ input[type=text], input[type=password] {
|
|||
.footer {
|
||||
padding: 2em;
|
||||
bottom: 0;
|
||||
background-color: #fff;
|
||||
float: center;
|
||||
width: 540px;
|
||||
height: 30px;
|
||||
|
|
|
@ -20,14 +20,12 @@
|
|||
<label><b>Password</b></label>
|
||||
<input type="password" placeholder="Enter Password" name="psw" required>
|
||||
|
||||
<span style="float:left;">
|
||||
<input type="checkbox" checked="checked"> Remember me
|
||||
</span>
|
||||
<span style="float:center">
|
||||
<button type="submit">Login</button>
|
||||
<span class="psw" style="float: right;">
|
||||
Forgot <a href="#">password?</a>
|
||||
</span>
|
||||
</span>
|
||||
<br>
|
||||
<span class="psw" style="float: right;">
|
||||
Forgot <a href="#">password?</a>
|
||||
</span>
|
||||
</div>
|
||||
</form>
|
||||
|
@ -58,6 +56,8 @@
|
|||
software like Aldus PageMaker including versions of Lorem
|
||||
Ipsum.</p>
|
||||
<a href="static/register.html"><button>Register</button></a>
|
||||
<br>
|
||||
|
||||
<h2>Our Mission</h2>
|
||||
<p>Contrary to popular belief, Lorem Ipsum is not simply random
|
||||
text. It has roots in a piece of classical Latin literature
|
||||
|
@ -73,9 +73,9 @@
|
|||
popular during the Renaissance. The first line of Lorem
|
||||
Ipsum, "Lorem ipsum dolor sit amet..", comes from a line
|
||||
in section 1.10.32.</p>
|
||||
<br>
|
||||
</div>
|
||||
<div class=footer>
|
||||
<br>
|
||||
</div>
|
||||
<div class=footer>
|
||||
Contribute on <a href="https://github.com/b3yond/ticketfrei">GitHub!</a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue