mirror of
https://gitlab.fdmci.hva.nl/technische-informatica-sm3/ti-projectten/rooziinuubii79.git
synced 2025-08-03 20:04:58 +00:00
busy with website redesign
This commit is contained in:
@@ -8,8 +8,9 @@
|
|||||||
{% block head %}{% endblock %}
|
{% block head %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{% include 'navbar.html' %}
|
{% include 'navbar.html' %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
BIN
src/Python/flask/web/static/images/logo.png
Normal file
BIN
src/Python/flask/web/static/images/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 200 KiB |
@@ -23,6 +23,22 @@ body {
|
|||||||
right: 0%;
|
right: 0%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.footer{
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
max-width: 80%;
|
||||||
|
background-color: #fff;
|
||||||
|
border: 1px solid #f0f0f0;
|
||||||
|
border-radius: 50px;
|
||||||
|
align-items: center;
|
||||||
|
margin: 1.5rem auto 0 auto;
|
||||||
|
padding: 0 30px;
|
||||||
|
top: 0%;
|
||||||
|
bottom: auto;
|
||||||
|
left: 0%;
|
||||||
|
right: 0%;
|
||||||
|
}
|
||||||
|
|
||||||
.imgNav {
|
.imgNav {
|
||||||
height: 50px;
|
height: 50px;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
|
@@ -43,16 +43,6 @@ section h2 {
|
|||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
|
||||||
background-color: #333;
|
|
||||||
color: #fff;
|
|
||||||
text-align: center;
|
|
||||||
padding: 1rem 0;
|
|
||||||
position: fixed;
|
|
||||||
width: 100%;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
form {
|
form {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
21
src/Python/flask/web/templates/footer.html
Normal file
21
src/Python/flask/web/templates/footer.html
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Document</title>
|
||||||
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<footer class="footer">
|
||||||
|
<img src="{{url_for('static', filename='images/logo_kobuki.png')}}" alt="logo" class="imgNav" />
|
||||||
|
<h3>© 2024 Kobuki Robot Project. All rights reserved.</h3>
|
||||||
|
<div class="buttonContainer">
|
||||||
|
<a href="{{ url_for('control') }}" target="_blank">
|
||||||
|
<button class="click connectButton">Controller</button>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
@@ -1,58 +1,58 @@
|
|||||||
|
{% extends 'base.html' %} {% block head %}
|
||||||
|
<link rel="stylesheet" href="../static/style.css" />
|
||||||
|
{% endblock %} {% block content %}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>Kobuki Robot Project</title>
|
<title>Kobuki Robot Project</title>
|
||||||
<link rel="stylesheet" href="../static/styleIndex.css" />
|
<link rel="stylesheet" href="../static/style.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<section class="container" id="home">
|
||||||
<h1>Welcome to the Kobuki Robot Project</h1>
|
<p>
|
||||||
<nav>
|
The Kobuki Robot Project is an innovative initiative aimed at developing
|
||||||
<ul>
|
a versatile and intelligent robot platform. Our goal is to create a
|
||||||
<li><a href="#home">Home</a></li>
|
robot that can navigate autonomously, interact with its environment, and
|
||||||
<li><a href="#about">About</a></li>
|
perform various tasks.
|
||||||
<li><a href="#contact">Contact</a></li>
|
</p>
|
||||||
</ul>
|
<img src="{{url_for('static', filename='images/logo.png')}}" alt="logo" class="imgNav" />
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<section id="home">
|
|
||||||
<h2>Introduction</h2>
|
|
||||||
<p>The Kobuki Robot Project is an innovative initiative aimed at developing a versatile and intelligent robot platform. Our goal is to create a robot that can navigate autonomously, interact with its environment, and perform various tasks.</p>
|
|
||||||
<img src="static/kobuki.jpg" alt="Kobuki Robot">
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="about">
|
<section class="container" id="about">
|
||||||
<h2>About the Project</h2>
|
<h2>About the Project</h2>
|
||||||
<p>This project is a collaborative effort involving engineers, researchers, and enthusiasts. The Kobuki robot is equipped with various sensors, including bumpers, cliff sensors, and gyroscopes, to help it navigate and interact with its surroundings.</p>
|
<p>
|
||||||
<p>Key features of the Kobuki Robot:</p>
|
This project is a collaborative effort involving engineers, researchers,
|
||||||
<ul>
|
and enthusiasts. The Kobuki robot is equipped with various sensors,
|
||||||
<li>Autonomous navigation</li>
|
including bumpers, cliff sensors, and gyroscopes, to help it navigate
|
||||||
<li>Obstacle detection and avoidance</li>
|
and interact with its surroundings.
|
||||||
<li>Real-time data processing</li>
|
</p>
|
||||||
<li>Remote control and monitoring</li>
|
<p>Key features of the Kobuki Robot:</p>
|
||||||
</ul>
|
<ul>
|
||||||
|
<li>Autonomous navigation</li>
|
||||||
|
<li>Obstacle detection and avoidance</li>
|
||||||
|
<li>Real-time data processing</li>
|
||||||
|
<li>Remote control and monitoring</li>
|
||||||
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section id="contact">
|
<section class="container" id="contact">
|
||||||
<h2>Contact Us</h2>
|
<h2>Contact Us</h2>
|
||||||
<form id="contact-form" action="/contact" method="post">
|
<form id="contact-form" action="/contact" method="post">
|
||||||
<label for="name">Name:</label>
|
<label for="name">Name:</label>
|
||||||
<input type="text" id="name" name="name" required>
|
<input type="text" id="name" name="name" required />
|
||||||
<label for="email">Email:</label>
|
<label for="email">Email:</label>
|
||||||
<input type="email" id="email" name="email" required>
|
<input type="email" id="email" name="email" required />
|
||||||
<label for="message">Message:</label>
|
<label for="message">Message:</label>
|
||||||
<textarea id="message" name="message" required></textarea>
|
<textarea id="message" name="message" required></textarea>
|
||||||
<button type="submit">Send</button>
|
<button type="submit">Send</button>
|
||||||
</form>
|
</form>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<footer>
|
{% include 'footer.html' %}
|
||||||
<p>© 2023 Kobuki Robot Project. All rights reserved.</p>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
<script src="static/script.js"></script>
|
<script src="static/script.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
{% endblock %}
|
||||||
|
@@ -11,13 +11,9 @@
|
|||||||
<img src="{{url_for('static', filename='images/logo_kobuki.png')}}" alt="logo" class="imgNav" />
|
<img src="{{url_for('static', filename='images/logo_kobuki.png')}}" alt="logo" class="imgNav" />
|
||||||
<h3>Kobuki</h3>
|
<h3>Kobuki</h3>
|
||||||
<div class="buttonContainer">
|
<div class="buttonContainer">
|
||||||
<a
|
<a href="{{ url_for('control') }}" target="_blank">
|
||||||
href="https://gitlab.fdmci.hva.nl/propedeuse-hbo-ict/onderwijs/2023-2024/out-a-se-ti/blok-3/vuupoofeehoo27"
|
<button class="click connectButton">Controller</button>
|
||||||
target="_blank"
|
|
||||||
>
|
|
||||||
<button class="click connectButton">Placeholder</button>
|
|
||||||
</a>
|
</a>
|
||||||
<!-- <a href="./signup.html">sign in</a> -->
|
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user