-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (67 loc) · 2.57 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!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">
<meta name="Webwiz induction" content="my induction page for webwiz">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div id="header-left">
<div id="logo">
</div>
</div>
<nav>
<ul id="list-items">
<li class="button-54">Home</li>
<li class="button-54">About</li>
<li class="button-54">Contact</li>
<li class="button-54">Help</li>
</ul>
</nav>
<div id="header-right">
<button class="btnfos-5" id="theme">
change theme
</button>
</div>
</header>
<main id="themer">
<div id="main-center">
<div id="main-img"></div>
<div id="main-form" class="blurred-box">
<div id="form-inner">
<div id="login-title">
<p class="login">Login to your account</p>
</div>
<div id="login-form">
<form action="index.html" method="post">
<div id="username">
<p class="login">Username:</p>
<input type="text" name="username" placeholder="Username">
</div>
<div>
<p class="login">E-mail:</p>
<input type="email" name="email" placeholder="E-mail">
</div>
<div>
<p class="login">Password:</p>
<input type="password" name="password" placeholder="Password">
</div>
<div>
<button class="button-54" onclick="alert('Oops we forgot it too..')">Forgot Password ?</button>
<button class="button-54" onclick="alert('Congratulations you have been sucessfully inducted to WebWiz')" type="submit" name="submit">Submit</button>
</div>
</form>
</div>
</div>
</div>
</div>
</main>
<footer>
</footer>
</body>
<script src="main.js"></script>
</html>