aboutsummaryrefslogtreecommitdiffstats
path: root/Web/Server/templates
diff options
context:
space:
mode:
authorDat Nguyen <nguy2854@umn.edu>2019-12-02 11:58:10 -0600
committerDat Nguyen <nguy2854@umn.edu>2019-12-02 11:58:10 -0600
commitb81e8026cc0683bc66dc56d82cb88085224d0d74 (patch)
tree085a37bce21cddafc1b35b6ea6c713bcdbdac3d9 /Web/Server/templates
parentadding github link (diff)
downloadee4511w-b81e8026cc0683bc66dc56d82cb88085224d0d74.tar
ee4511w-b81e8026cc0683bc66dc56d82cb88085224d0d74.tar.gz
ee4511w-b81e8026cc0683bc66dc56d82cb88085224d0d74.tar.bz2
ee4511w-b81e8026cc0683bc66dc56d82cb88085224d0d74.tar.lz
ee4511w-b81e8026cc0683bc66dc56d82cb88085224d0d74.tar.xz
ee4511w-b81e8026cc0683bc66dc56d82cb88085224d0d74.tar.zst
ee4511w-b81e8026cc0683bc66dc56d82cb88085224d0d74.zip
final styling?
Diffstat (limited to '')
-rw-r--r--Web/Server/templates/base.html5
-rw-r--r--Web/Server/templates/index.html16
-rw-r--r--Web/Server/templates/results.html4
3 files changed, 9 insertions, 16 deletions
diff --git a/Web/Server/templates/base.html b/Web/Server/templates/base.html
index e253819..a1bc09b 100644
--- a/Web/Server/templates/base.html
+++ b/Web/Server/templates/base.html
@@ -10,9 +10,6 @@
<button class="button" onclick="toggleAbout()">About</button>
- <br>
- <br>
-
<div id="about">
<h2 id="subtitle">
By Alin Butoi, Paul D’Amico, Dat Nguyen, Ross Olson, Rachel Schow <br>
@@ -42,7 +39,7 @@
<br>
</nav>
- <div class = "container">
+ <div id="main">
{% block content %}
default content
{% endblock %}
diff --git a/Web/Server/templates/index.html b/Web/Server/templates/index.html
index 730d6c5..6f7e738 100644
--- a/Web/Server/templates/index.html
+++ b/Web/Server/templates/index.html
@@ -2,17 +2,11 @@
{% block content %}
<div id="upload">
- <h2>Upload a python file onto the Inverted Pendulum</h2>
+ <h2>Upload a python file onto the inverted pendulum</h2>
<p>
- {% with messages = get_flashed_messages() %}
- {% if messages %}
- <ul class=flashes>
- {% for message in messages %}
- <li>{{ message }}</li>
- {% endfor %}
- </ul>
+ {% if error %}
+ <h2>{{ error }}</h2>
{% endif %}
- {% endwith %}
</p>
<form method="post" action="/upload" enctype="multipart/form-data">
@@ -22,11 +16,11 @@
</p>
</dl>
<p>
- <input id="submit" type="submit" value="Submit" onclick="showLoad()">
+ <input id="submit" type="submit" value="Submit"> <!-- onclick="showLoad()"> -->
</p>
</form>
</div>
- <div id="message"></div>
+ <div id="running"></div>
{% endblock %}
diff --git a/Web/Server/templates/results.html b/Web/Server/templates/results.html
index 5714f96..dd32d87 100644
--- a/Web/Server/templates/results.html
+++ b/Web/Server/templates/results.html
@@ -1,11 +1,13 @@
{% extends "base.html" %}
{% block content %}
+ <br>
+ <br>
<form method="get" action="/results">
<button type="submit">Download Results File</button>
</form>
<form method="get" action="/">
- <button type="submit">Return to upload another file</button>
+ <button type="submit">Upload another file</button>
</form>
{% endblock %} \ No newline at end of file