-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
62 lines (51 loc) · 1.65 KB
/
index.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
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title>Spacelog</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<meta name="author" content="etahae">
<link rel="stylesheet", href="css/style.css">
<link rel = "icon" href ="images/title_ico.png" >
</head>
<body>
<div>
<video id="bg_video" autoplay muted loop>
<source src="videos/space.mp4">
</video>
</div>
<div id="form">
<form method="post">
<label class="formLabels" for="title">SpaceLog</label>
<br>
<input class="formInputs" type="text" id="email" name="email" placeholder="Email address" required>
<br>
<!-- <label class="formLabels" for="password">password :</label> -->
<input class="formInputs" type="password" id="password" name="password" placeholder="password" autocomplete="off" required>
</form>
<button type="button" id="signInButton">Sign in</button>
<button type="button" id="signUpButton">Sign up</button>
<br>
</div>
<div id="checkBoxDiv">
<input type="checkbox" id="checkBox" required></input>
<label for="checkBox" id="terms"><a>Accept terms and conditions</a></label>
</div>
<div id="nameInput">
<form id="nameInputForm">
<label class="formLabels">Enter nickname: </label>
<br>
<input id="_name" class="formInputs" type="text" required>
<br>
<button id="nameSubmit" type="button">submit</button>
</form>
</div>
<!-- <iframe></iframe> -->
<!-- <audio controls autoplay loop volume="0.2">
<source src="sounds/bg_sound.mp3">
</audio> -->
<i ></i>
<p id="paragraph"></p>
<script src="js/index.js"></script>
</body>
</html>