-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.51 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" lang="sv">
<head>
<meta charset="utf-8">
<link href="/static/style.css" rel="stylesheet">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quicksand&display=swap" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<title>Stockholms Stadsmission: DIGGINS Rapporteringsverktyg</title>
</head>
<body>
<div id="menu">
<a href="/"><img src="/static/SSM_logga_utan_bakgrund.svg" alt="Stockholms Stadsmissions logga" id="ssm-logga"></a>
<h1>DIGGINS</h1>
</div>
<form action="/ankommande" method="get" id="enhetsform">
<section id="jumbo">
<article>
<h2 class="title">Välj din enhet</h2>
<select aria-label="selector" id="selector" name="vald_enhet" form="enhetsform" required>
<option th:each="costCenter: ${costCenters}" th:value="${costCenter.id}" th:text="${costCenter.name}"></option>
</select>
<button class="button-orange" type="submit">OK</button>
</article>
</section>
</form>
</body>
</html>