Skip to content

Commit

Permalink
reformatting templates headers menu bars
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Carter committed Jan 5, 2018
1 parent c5dce80 commit 9fb3049
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
Binary file modified lasanfound.pyc
Binary file not shown.
5 changes: 3 additions & 2 deletions templates/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<div class="page-container">
<h1>Lost and Found, Reimagined!</h1>
<div class="toolbar">
<a class="tool-link" href="/">Home</a> |
<a class="tool-link" href="/new">New Item</a>
<a class="tool-link" href="/">Home</a> |
<a class="tool-link" href="/about"><b>About</b></a> |
<a class="tool-link" href="/new">New Item</a>
</div>
<h3>What is LASA 'n Found?</h3>
<p>LASA 'n Found is a crowdsourced solution to LASA's lost and found problem. You can either browse for a lost item, or submit a new one to our database.</p>
Expand Down
6 changes: 3 additions & 3 deletions templates/error.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<div id="home-container">
<h1>Error: {{error}}</h1>
<div class="toolbar">
<a class="tool-link" href="/">Home</a> |
<a class="tool-link" href="/about">About</a> |
<a class="tool-link" href="/new">New Item</a>
<a class="tool-link" href="/">Home</a> |
<a class="tool-link" href="/about">About</a> |
<a class="tool-link" href="/new">New Item</a>
</div>
</div>
</div>
Expand Down
5 changes: 3 additions & 2 deletions templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,9 @@
<div class="page-container">
<h1>LASA 'n Found</h1>
<div class="toolbar">
<a class="tool-link" href="/about">About</a> |
<a class="tool-link" href="/new">New Item</a>
<a class="tool-link" href="/"><b>Home</b></a> |
<a class="tool-link" href="/about">About</a> |
<a class="tool-link" href="/new">New Item</a>
</div>
<div class="items">
{% for item in items %}
Expand Down
6 changes: 3 additions & 3 deletions templates/item.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<div class="page-container">
<h1>LASA 'n Found Archive</h1>
<div class="toolbar">
<a class="tool-link" href="/">Home</a> |
<a class="tool-link" href="/about">About</a> |
<a class="tool-link" href="/new">New Item</a>
<a class="tool-link" href="/">Home</a> |
<a class="tool-link" href="/about">About</a> |
<a class="tool-link" href="/new">New Item</a>
</div>
<div class="item">
<div class="error">{{error}}</div>
Expand Down
6 changes: 4 additions & 2 deletions templates/newitem.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,15 @@
<meta charset="utf-8">
<title>LASA 'n Found - New Item</title>
<link rel="stylesheet" type="text/css" href="/stylesheets/style.css">
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body>
<div class="page-container">
<h1>Report a New Lost Item</h1>
<div class="toolbar">
<a class="tool-link" href="/">Home</a> |
<a class="tool-link" href="/about">About</a>
<a class="tool-link" href="/about">About</a> |
<a class="tool-link" href="/new"><b>New Item</b></a>
</div>
<!--action needs to update-->
<form enctype="multipart/form-data" method="post">
Expand All @@ -33,7 +35,7 @@ <h1>Report a New Lost Item</h1>
<p>Add relevent picture of the item <span class="error">{{fileError}}</span></p>
<input name="file" type="file"/>
</div><br>
<div class="g-recaptcha" data-sitekey="6LdVQTQUAAAAALtj9Jq1fTVLxU-SK3Ib1L_1Sm0H"></div>
<div class="g-recaptcha" data-sitekey="6LdVQTQUAAAAALtj9Jq1fTVLxU-SK3Ib1L_1Sm0H"></div><br>
<input class="submit" type="submit" value="Submit">
</form>
</div>
Expand Down

0 comments on commit 9fb3049

Please sign in to comment.