diff options
Diffstat (limited to 'Web/Server/templates')
-rw-r--r-- | Web/Server/templates/base.html | 48 | ||||
-rw-r--r-- | Web/Server/templates/index.html | 26 | ||||
-rw-r--r-- | Web/Server/templates/results.html | 13 |
3 files changed, 0 insertions, 87 deletions
diff --git a/Web/Server/templates/base.html b/Web/Server/templates/base.html deleted file mode 100644 index a1bc09b..0000000 --- a/Web/Server/templates/base.html +++ /dev/null @@ -1,48 +0,0 @@ -<html> - <head> - <link rel="stylesheet" href="/static/Server.css"> - <script type="text/javascript" src="/static/Server.js"></script> - </head> - <body> - <title>ANDI'S PIE</title> - <nav class = "container"> - <h1 id="title">Remotely Accessible Inverted Pendulum</h1> - - <button class="button" onclick="toggleAbout()">About</button> - - <div id="about"> - <h2 id="subtitle"> - By Alin Butoi, Paul D’Amico, Dat Nguyen, Ross Olson, Rachel Schow <br> - Advisor: Professor Andrew Lamperski <br> - Sponsored by the University of Minnesota - Twin Cities <br> - </h2> - <h1>Team ANDI'S PIE</h1> - <div> - Andy’s Nifty Dynamic Inverted Swinging Pendulum in Equilibrium - </div> - - <h1>Background</h1> - <p> - Our team developed an inverted pendulum system that could be accessed over a computer network for use by students. The inverted pendulum is a common controls problem used in academia. This problem teaches students concepts of control loops, data filtering, and machine learning. - </p> - - <h1> What is an Inverted Pendulum? </h1> - <p> - A vertical pendulum that is balanced via the base moving. <br> - Controlled movements are determined by measuring the position and speed of the pendulum and base. - </p> - - <a href="https://github.umn.edu/damic014/ee4950-inverted-pendulum"> Link to Github</a> - </div> - - <br> - <br> - </nav> - - <div id="main"> - {% block content %} - default content - {% endblock %} - </div> - </body> -</html>
\ No newline at end of file diff --git a/Web/Server/templates/index.html b/Web/Server/templates/index.html deleted file mode 100644 index 6f7e738..0000000 --- a/Web/Server/templates/index.html +++ /dev/null @@ -1,26 +0,0 @@ -{% extends "base.html" %} - -{% block content %} - <div id="upload"> - <h2>Upload a python file onto the inverted pendulum</h2> - <p> - {% if error %} - <h2>{{ error }}</h2> - {% endif %} - </p> - - <form method="post" action="/upload" enctype="multipart/form-data"> - <dl> - <p> - <input id="choose_file" type="file" name="file" autocomplete="off" required> - </p> - </dl> - <p> - <input id="submit" type="submit" value="Submit"> <!-- onclick="showLoad()"> --> - </p> - </form> - </div> - - <div id="running"></div> - -{% endblock %} diff --git a/Web/Server/templates/results.html b/Web/Server/templates/results.html deleted file mode 100644 index dd32d87..0000000 --- a/Web/Server/templates/results.html +++ /dev/null @@ -1,13 +0,0 @@ -{% 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">Upload another file</button> - </form> -{% endblock %}
\ No newline at end of file |