Skip to content
Snippets Groups Projects
Commit 168329a1 authored by mrschnei's avatar mrschnei
Browse files

Added mask making page and started detailing it

parent 52711fcc
No related branches found
No related tags found
No related merge requests found
No preview for this file type
No preview for this file type
No preview for this file type
......@@ -5,5 +5,6 @@
<title>ServicePoints</title>
<a href="/accounts/logout/">logout</a>
<a href="/accounts/delete/">delete</a>
<a href="/accounts/mask/">mask</a>
</head>
</html>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="/css/style.css">
<title>How to make a mask:</title>
<style>
* {
box-sizing: border-box;
}
.column {
float: left;
width: 50%;
padding: 10px;
}
</style>
<a href="/">Home</a>
</head>
<body>
<h1 style="text-align:center">How to Make and Donate Masks</h1>
<div>
<div class="column" style="border-right:1px solid;">
<h2 style="text-align:center">How to Make Masks</h2>
<p>Text with simple directions and list of what is needed. Also embedded video(s) below with more indepth directions</p>
<div style="text-align:center">
<iframe width="560" height="315" src="https://www.youtube.com/embed/VgHrnS6n4iA" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="column">
<h2 style="text-align:center">Where to donate masks</h2>
<p>Text and donation links</p>
</div>
</div>
</body>
</html>
No preview for this file type
No preview for this file type
......@@ -222,3 +222,9 @@ def incompleteForm(prev):
return flask.redirect(flask.url_for(prev))
context = {"prev": prev}
return render_template('incompleteForm.html', **context)
@servicePoints.app.route('/accounts/mask/')
def mask():
context = {}
return render_template('mask.html', **context)
No preview for this file type
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment