mirror of
https://gitlab.fdmci.hva.nl/technische-informatica-sm3/ti-projectten/rooziinuubii79.git
synced 2025-08-05 12:54:57 +00:00
21 lines
649 B
HTML
21 lines
649 B
HTML
<!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>
|
|
<nav class="navbar">
|
|
<img src="{{url_for('static', filename='images/logo_kobuki.png')}}" alt="logo" class="imgNav" />
|
|
<h3>Kobuki</h3>
|
|
<div class="buttonContainer">
|
|
<a href="{{ url_for('control') }}" target="_blank">
|
|
<button class="click connectButton">Controller</button>
|
|
</a>
|
|
</div>
|
|
</nav>
|
|
|
|
</body>
|
|
</html> |