2 Ревизии

Автор SHA1 Съобщение Дата
  Jose Reyes f086a73eb6 Fixes some styling преди 6 години
  Jose Reyes b4505a3cdb Removes old comments преди 6 години
променени са 2 файла, в които са добавени 3 реда и са изтрити 15 реда
  1. 1
    13
      app/templates/base.html
  2. 2
    2
      app/templates/index.html

+ 1
- 13
app/templates/base.html Целия файл

1
 <!doctype html>
1
 <!doctype html>
2
 <title>{% block title %}{% endblock %} - UPR Queue</title>
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
 <section class="content">
4
 <section class="content">
17
     <header>
5
     <header>
18
         {% block header %}{% endblock %}
6
         {% block header %}{% endblock %}

+ 2
- 2
app/templates/index.html Целия файл

7
 {% block content %}
7
 {% block content %}
8
     <form method="post">
8
     <form method="post">
9
         <label for="name">Name</label>
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
 		<label for="email">email</label>
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
         <input type="radio" name="station" id="station1" value="Fulano"> Fulano </input><br>
13
         <input type="radio" name="station" id="station1" value="Fulano"> Fulano </input><br>
14
         <input type="radio" name="station" id="station2" value="Mengana"> Mengana </input><br>
14
         <input type="radio" name="station" id="station2" value="Mengana"> Mengana </input><br>
15
         <input type="submit" value="Get ticket">
15
         <input type="submit" value="Get ticket">