2 Commits

Author SHA1 Message Date
  Jose Reyes f086a73eb6 Fixes some styling 6 years ago
  Jose Reyes b4505a3cdb Removes old comments 6 years ago
2 changed files with 3 additions and 15 deletions
  1. 1
    13
      app/templates/base.html
  2. 2
    2
      app/templates/index.html

+ 1
- 13
app/templates/base.html View File

@@ -1,18 +1,6 @@
1 1
 <!doctype html>
2 2
 <title>{% block title %}{% endblock %} - UPR Queue</title>
3
-<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
4
-<nav>
5
-    <h1>UPR Queue</h1>
6
-<!--     <ul>
7
-        {% if g.user %}
8
-            <li><span>{{ g.user['username'] }}</span>
9
-            <li><a href="{{ url_for('auth.logout') }}">Log Out</a>
10
-        {% else %}
11
-            <li><a href="{{ url_for('auth.register') }}">Register</a>
12
-            <li><a href="{{ url_for('auth.login') }}">Log In</a>
13
-        {% endif %}
14
-    </ul> -->
15
-</nav>
3
+
16 4
 <section class="content">
17 5
     <header>
18 6
         {% block header %}{% endblock %}

+ 2
- 2
app/templates/index.html View File

@@ -7,9 +7,9 @@
7 7
 {% block content %}
8 8
     <form method="post">
9 9
         <label for="name">Name</label>
10
-        <input name="name" id="name" value="{{ request.form['cName'] }}" required>
10
+        <input name="name" id="name" value="{{ request.form['cName'] }}" required></input><br>
11 11
 		<label for="email">email</label>
12
-        <input name="email" id="email" value="{{ request.form['cEmail'] }}" required>
12
+        <input name="email" id="email" value="{{ request.form['cEmail'] }}" required></input><br>
13 13
         <input type="radio" name="station" id="station1" value="Fulano"> Fulano </input><br>
14 14
         <input type="radio" name="station" id="station2" value="Mengana"> Mengana </input><br>
15 15
         <input type="submit" value="Get ticket">