summaryrefslogtreecommitdiff
path: root/website/app/templates
diff options
context:
space:
mode:
authorblendoit <blendoit@gmail.com>2020-01-22 18:17:38 -0800
committerblendoit <blendoit@gmail.com>2020-01-22 18:17:38 -0800
commit6256335ef802e2823ac0118c01c7fe31e38e7287 (patch)
treef4d1633da886db94b450b70252ac935594ce73b8 /website/app/templates
parent2f1d0719faa0d955a82e87c0ea022f458e1c699f (diff)
Second commit.
Diffstat (limited to 'website/app/templates')
-rw-r--r--website/app/templates/base.html25
-rw-r--r--website/app/templates/home.html24
-rw-r--r--website/app/templates/login.html34
-rw-r--r--website/app/templates/no.html23
-rw-r--r--website/app/templates/register.html31
-rw-r--r--website/app/templates/yes.html17
6 files changed, 0 insertions, 154 deletions
diff --git a/website/app/templates/base.html b/website/app/templates/base.html
deleted file mode 100644
index 5520493..0000000
--- a/website/app/templates/base.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to">
-
- {% if title %}
- <title>{{ title }}</title>
- {% else %}
- <title>Blendoit</title>
- {% endif %}
- </head>
- <body>
- {% with messages = get_flashed_messages(with_categories=true) %}
- {% if messages %}
- {% for message in messages %}
- <div class="alert">
- {{ message }}
- </div>
- {% endfor %}
- {% endif %}
- {% endwith %}
-
- {% block content %}{% endblock %}
- </body>
-</html>
diff --git a/website/app/templates/home.html b/website/app/templates/home.html
deleted file mode 100644
index 89984eb..0000000
--- a/website/app/templates/home.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/default.css') }}">
-<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/home.css') }}">
-
-{% extends "base.html" %}
-
-{% block content %}
-
-<div>
- <a href="{{ url_for('yes') }}" class="tab-yes"></a>
- <a href="{{ url_for('no') }}" class="tab-no"></a>
-
- <div class="main">
- {% for post in posts %}
- <div class="post">
- <h1>{{post.author}}</h1>
- <h2>{{post.date}}</h2>
- <p>{{post.content}}</p>
- </div>
- {% endfor %}
- </div>
-</div>
-
-
-{% endblock content %}
diff --git a/website/app/templates/login.html b/website/app/templates/login.html
deleted file mode 100644
index 63217e1..0000000
--- a/website/app/templates/login.html
+++ /dev/null
@@ -1,34 +0,0 @@
-{% extends "base.html" %}
-{% block content %}
-
-<div class="content-section">
- <form method="POST" action="">
- {{ form.hidden_tag() }}
- <fieldset class="form-group">
- <legend>Join Today</legend>
- <div class="form-group">
- {{ form.alias.label }}
- {{ form.alias }}
- </div>
- <div class="form-group">
- {{ form.password.label }}
- {{ form.password }}
- </div>
- <div class="form-group">
- {{ form.password_confirm.label }}
- {{ form.password_confirm }}
- </div>
- </fieldset>
- <div class="form-group">
- {{ form.submit(class="btn") }}
- </div>
- </form>
-</div>
-
-<div>
- <small>
- Already have an account? <a href="{{ url_for('login') }}">Sign In</a>
- </small>
-</div>
-
-{% endblock content %}
diff --git a/website/app/templates/no.html b/website/app/templates/no.html
deleted file mode 100644
index e1b9238..0000000
--- a/website/app/templates/no.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/default.css') }}">
-<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/no.css') }}">
-
-{% extends "base.html" %}
-{% block content %}
-
-<div>
- <a href="{{ url_for('yes') }}" class="tab-yes"></a>
- <a href="{{ url_for('home') }}" class="tab-home"></a>
-
- <div class="main">
- {% for post in posts %}
- <div class="post">
- <h1>{{post.author}}</h1>
- <h2>{{post.date}}</h2>
- <p>{{post.content}}</p>
- </div>
- {% endfor %}
- </div>
-</div>
-
-
-{% endblock content %}
diff --git a/website/app/templates/register.html b/website/app/templates/register.html
deleted file mode 100644
index 456b8f7..0000000
--- a/website/app/templates/register.html
+++ /dev/null
@@ -1,31 +0,0 @@
-{% extends "base.html" %}
-{% block content %}
-
-<div class="content-section">
- <form method="POST" action="">
- {{ form.hidden_tag() }}
- <fieldset class="form-group">
- <legend>Create a new alias</legend>
- <div class="form-group">
- {{ form.alias.label(class="form-control-label") }}
- {{ form.alias(class="form-control") }}
- </div>
- <div class="form-group">
- {{ form.password.label(class="form-control-label") }}
- {{ form.password(class="form-control") }}
- </div>
- <div class="form-group">
- {{ form.password_confirm.label(class="form-control-label") }}
- {{ form.password_confirm(class="form-control") }}
- </div>
- </fieldset>
- <div class="form-group">
- {{ form.submit(class="btn") }}
- </div>
- </form>
-</div>
-<div>
- Sign in with existing alias? <a href="{{ url_for('login') }}">Sign In</a>
-</div>
-
-{% endblock content %}
diff --git a/website/app/templates/yes.html b/website/app/templates/yes.html
deleted file mode 100644
index b915221..0000000
--- a/website/app/templates/yes.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/default.css') }}">
-<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='styles/yes.css') }}">
-
-{% extends "base.html" %}
-{% block content %}
-
-<div>
- <a href="{{ url_for('no') }}" class="tab-no"></a>
- <a href="{{ url_for('home') }}" class="tab-home"></a>
-
- <div class="main">
- <p> yes, no?</p>
- </div>
-</div>
-
-
-{% endblock content %}
Copyright 2019--2024 Marius PETER