Update ui a bit more

This commit is contained in:
Jonathan Carter
2024-12-05 12:01:16 +02:00
parent 6a2dfbbde5
commit 6a5905374d
10 changed files with 105 additions and 237 deletions

View File

@@ -1,43 +1,18 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="/static/bulma.css" rel="stylesheet">
<link href="/static/welcome.css" rel="stylesheet">
</head>
<body>
{% extends "layout.html" %}
{% block body %}
<div class="bg"></div>
<div style="width: 1000px; font-family: Noto Sans;">
<div style="min-height: 80%; left: 22%; right: 22%; top: 50px; bottom: 50px; position: absolute; width:1000px;" class="container">
<div class="notification is-dark">
<h1 class="is-size-3"> Configure User </h1>
<p><b> Let's set up an initial user. </b></p>
<br>
<img src="/static/icons/avatar-default.svg" width="160px" style="float: left; position: absolute;" />
<div class="tabs">
<ul>
<li><a href="./welcome">Welcome</a></li>
<li class="is-active"><a href="./users">Users</a></li>
<li><a href="./disks">Disks</a></li>
<li><a href="./software">Software</a></li>
<li><a href="./summary">Summary</a></li>
</ul>
</div>
<br>
<p> Let's set up an initial user.</p>
<br>
<div style="margin-left: 180px;">
<div class="field">
<label>Full Name</label>
<div class="control">
<input class="input" type="text" placeholder="Text input">
<label>Full Name</label> <div class="control"><input class="input" type="text" placeholder="Text input">
</div>
</div>
@@ -69,6 +44,8 @@
</div>
</div>
</div> <!-- style 180 -->
<br><br>
<div class="columns">
@@ -79,5 +56,6 @@
</div>
</div>
</body>
</html>
</div>
{% endblock %}