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,47 +1,19 @@
<!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; height: 100%; 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"> Welcome to System Installer </h1>
<p><b>Welcome! This setup program will install Debian on to your system.</b></p>
<br>
<div class="tabs">
<ul>
<li class="is-active"><a href="./welcome">Welcome</a></li>
<li><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> Welcome! This setup program will install Debian on to your system.</p>
<br>
<div class="columns">
<div class="columns" style="text-align: center;">
<div class="column">
<img src="/static/icons/keyboard.svg" width="180px" />
<div class="control is-link">
<img src="/static/icons/keyboard.svg" style="fill: white;" width="180px" />
<div class="control is-link" width="180px">
<div class="select">
<select>
<select style="width: 180px">
<option>English</option>
<option>Afrikaans</option>
</select>
@@ -55,7 +27,7 @@
<img src="/static/icons/keyboard.svg" width="180px" />
<div class="control is-link">
<div class="select">
<select>
<select style="width: 180px">
<option>en-us</option>
<option>en-uk</option>
</select>
@@ -69,7 +41,7 @@
<img src="/static/icons/keyboard.svg" width="180px" />
<div class="control is-link">
<div class="select">
<select>
<select style="width: 180px">
<option>Africa/Johannesburg</option>
<option>UTC</option>
</select>
@@ -79,7 +51,7 @@
</div> <!-- end columns -->
<br><br><br><br><br><br>
<br><br><br><br><br><br<br><br>
<div class="columns">
<div class="column"><button class="button is-light">Quit</button></div>
@@ -89,5 +61,4 @@
</div>
</div>
</body>
</html>
{% endblock %}