-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.html
More file actions
62 lines (55 loc) · 2.19 KB
/
config.html
File metadata and controls
62 lines (55 loc) · 2.19 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="data.css">
<link rel = "icon" type = "image/png" href = "assets/mini.png">
<title>Randomly - Configuration</title>
</head>
<body >
<div class="header">
<div class="logo"><img src="./assets/loogo.png"></div>
</div>
<div class="container">
<div class="check">
<h4>Last step</h4>
<p class="subtitle">We need more configuration</p>
<ul class="configList">
<li>Name of your class is :</li>
<div class="input"><input class="nameClass" type="text" name="className" placeholder="Enter name here"></div>
<li>First show day :</li>
<div class="input"><input class="nameClass" id="datefield" name="firstDay" type="date" min='1899-01-01'></div>
<li>Order of subjects :</li>
<div class="custom-radios">
<div>
<input type="radio" id="color-1" name="subject" value="1" checked>
<label for="color-1">
<p>Choose randomly</p>
<span>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/242518/check-icn.svg" alt="Checked Icon" />
</span>
</label>
</div>
<div>
<input type="radio" id="color-2" name="subject" value="0">
<label for="color-2">
<p>Keep order</p>
<span>
<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/242518/check-icn.svg" alt="Checked Icon" />
</span>
</label>
</div>
</div>
<div class="btn">
<button onclick="getData()">Finish</button>
</div>
</ul>
</div>
</div>
</body>
</html>
<script>
</script>
<script src="data.js"></script>