-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwelcome.html
49 lines (46 loc) · 1.89 KB
/
welcome.html
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
<!-- Greet the user after they've signed in -->
<!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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link href="./assets/css/welcome.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="title">
<span id="black">Welcome, you are now signed in!</span>
</div>
<!-- partial:index.partial.html -->
<div class="container">
<div class="moji">😄</div>
<div class="title" id="black">This article is</div>
<div>
<form action="/" method="post">
<div class="slider">
<span>Unbiased</span>
<input type="range" value="0" min="0" max="10" step="1" id="bias">
<span id="red">Biased</span>
</div>
<div class="title">My political position is</div>
<div class="slider">
<span id="black">Left</span>
<input type="range" value="0" min="0" max="10" step="1" id="position">
<span id="black">Right</span>
</div>
<p></p>
<div class="title">Article's URL:</div>
<div>
<input type="url" id="article">
</div>
<div class="container center">
<button id="button" type="button" class="btn btn-primary btn-lg" id="view">View users' ratings</button>
</div>
</form>
</div>
</div>
<!-- partial -->
<script type="module" src="./slider.js"></script>
</body>
</html>