diff --git a/src/font/font-Bold.ttf b/src/font/font-Bold.ttf new file mode 100644 index 0000000..f632b52 Binary files /dev/null and b/src/font/font-Bold.ttf differ diff --git a/src/font/font.ttf b/src/font/font.ttf new file mode 100644 index 0000000..f632b52 Binary files /dev/null and b/src/font/font.ttf differ diff --git a/src/main.py b/src/main.py index 82f6433..2f7d027 100644 --- a/src/main.py +++ b/src/main.py @@ -47,6 +47,13 @@ class User(db.Model): def home(): return render_template("index.html") +@app.route("/register") +def register(): + return render_template("register.html") + +@app.route("/login") +def login(): + return render_template("login.html") if __name__ == "__main__": with app.app_context(): diff --git a/src/static/style.css b/src/static/drip.css similarity index 81% rename from src/static/style.css rename to src/static/drip.css index e8304dc..3f25630 100644 --- a/src/static/style.css +++ b/src/static/drip.css @@ -14,7 +14,7 @@ } body { - background: #111011; + background: #101210; color: #e0e0e0; text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); max-width: 800px; @@ -44,22 +44,21 @@ strong, b { h1 { - color: #ffffff; - text-decoration: underline #FF00FF; + color: #00ff00; + text-decoration: underline yellow; text-align: center; } h2 { - text-align: center; - color: #ff00ff; + color: #00ff00; } h3 { - color: #ff00ff; + color: #00ff00; } a { - color: #0000ff; + color: #ffff00; } a:hover { @@ -67,8 +66,8 @@ a:hover { } summary { - color: #ff00ff; - background: #111011; + color: #008800; + background: #101210; } details { diff --git a/src/templates/index.html b/src/templates/index.html index b58edaf..8bd4d52 100644 --- a/src/templates/index.html +++ b/src/templates/index.html @@ -1,13 +1,15 @@ - - - - onions - - -

onions

find the onion of your life!

- - -

Welcome!

-

WIP

- - +{% extends "page.html" %} + +{% block content %} +

Home

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+{% endblock %} diff --git a/src/templates/login.html b/src/templates/login.html new file mode 100644 index 0000000..287f321 --- /dev/null +++ b/src/templates/login.html @@ -0,0 +1,15 @@ +{% extends "page.html" %} + +{% block content %} +

Login

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+{% endblock %} diff --git a/src/templates/page.html b/src/templates/page.html new file mode 100644 index 0000000..20cb983 --- /dev/null +++ b/src/templates/page.html @@ -0,0 +1,16 @@ + + + + Dating Website + + +

Dating Website

+ + + +{% block content %}{% endblock %} + + + + + diff --git a/src/templates/register.html b/src/templates/register.html new file mode 100644 index 0000000..bf4f7a5 --- /dev/null +++ b/src/templates/register.html @@ -0,0 +1,15 @@ +{% extends "page.html" %} + +{% block content %} +

Register

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+

Page text

+{% endblock %}