diff options
author | Matt Strapp <matt@mattstrapp.net> | 2022-02-11 11:30:40 -0600 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2022-02-11 11:30:40 -0600 |
commit | e9cc00f8947d3aea0f802a8b8d7f2e406c3fcb1f (patch) | |
tree | 301a68cd34c73ce5ea2d158e4a4e463d183d0736 /src/views | |
parent | Do a bunch of random things (still no feature parity) (diff) | |
download | ee4511w-web-e9cc00f8947d3aea0f802a8b8d7f2e406c3fcb1f.tar ee4511w-web-e9cc00f8947d3aea0f802a8b8d7f2e406c3fcb1f.tar.gz ee4511w-web-e9cc00f8947d3aea0f802a8b8d7f2e406c3fcb1f.tar.bz2 ee4511w-web-e9cc00f8947d3aea0f802a8b8d7f2e406c3fcb1f.tar.lz ee4511w-web-e9cc00f8947d3aea0f802a8b8d7f2e406c3fcb1f.tar.xz ee4511w-web-e9cc00f8947d3aea0f802a8b8d7f2e406c3fcb1f.tar.zst ee4511w-web-e9cc00f8947d3aea0f802a8b8d7f2e406c3fcb1f.zip |
Finish upload API endpoint
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'src/views')
-rw-r--r-- | src/views/pages/about.ejs | 5 | ||||
-rw-r--r-- | src/views/pages/index.ejs | 2 | ||||
-rw-r--r-- | src/views/partials/head.ejs | 6 |
3 files changed, 6 insertions, 7 deletions
diff --git a/src/views/pages/about.ejs b/src/views/pages/about.ejs index 022354c..2feede5 100644 --- a/src/views/pages/about.ejs +++ b/src/views/pages/about.ejs @@ -4,12 +4,12 @@ <head> <!-- HTML headers information --> <%- include('../partials/head.ejs') %> + <title>About the Remotely Accessible Inverted Pendulum</title> </head> <body> <!-- Get the navbar --> <%- include('../partials/nav.ejs') %> - <title>About the Remotely Accessible Inverted Pendulum</title> <div class="header"> <img src="public/img/site_logo.png" alt="Pendulum logo" width="160" height="130" /> <h1>Remotely Accessible Inverted Pendulum</h1> @@ -28,8 +28,7 @@ <br /> <h1 id="Background">Background</h1> <p> - Our teams 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, and web development. + Our teams 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> <br /> <h1 id="Pendulum_info"> What is an Inverted Pendulum? </h1> diff --git a/src/views/pages/index.ejs b/src/views/pages/index.ejs index 0e6fe15..8b5f044 100644 --- a/src/views/pages/index.ejs +++ b/src/views/pages/index.ejs @@ -11,7 +11,7 @@ <!-- Get the navbar --> <%- include('../partials/nav.ejs') %> <br /> - <h2>Please upload a Python file (.py file extension) onto the Inverted Pendulum.</h2> + <h2>Please upload a Python file (.py file extension) to run on the Inverted Pendulum.</h2> <br /> <br /> <form id="upload" enctype="multipart/form-data"> <input type="hidden" name="_csrf" value="<%= csrfToken %>"> diff --git a/src/views/partials/head.ejs b/src/views/partials/head.ejs index 320f0e6..4a9d76a 100644 --- a/src/views/partials/head.ejs +++ b/src/views/partials/head.ejs @@ -1,6 +1,6 @@ <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <link rel="stylesheet" href="public/css/style.css" type="text/css"> - <link rel="icon" href="public/img/site_logo.png" type="image/x-icon">
\ No newline at end of file + <link rel="stylesheet" href="public/css/style.css" type="text/css" /> + <link rel="icon" href="public/img/site_logo.png" type="image/x-icon" />
\ No newline at end of file |