-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstartpage.html
More file actions
59 lines (59 loc) · 2.94 KB
/
startpage.html
File metadata and controls
59 lines (59 loc) · 2.94 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
<!doctype html>
<html>
<head>
<title>Coding Hub</title>
<meta name="viewport" content="width=device-width">
<meta name="charset" content="utf-8">
<meta name="google-site-verification" content="HKE8WuU9jmTqLYJQeGP3ZPbHInVZybJ094VH6DEJJ0c">
<link rel="icon" type="image/png" href="static/images/hub.jpg">
<link rel="apple-touch-icon" type="image/png" href="static/images/hub.jpg">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans|Source+Sans+Pro&display=swap" rel="stylesheet">
<link href="static/css/startpage.css" rel="stylesheet">
<script src="static/js/startpage.js"></script>
</head>
<body>
<!--hero container-->
<div class="hero">
<div class="hero--container">
<nav id="navbar">
<div class="hero--nav">
<img src="static/images/hub.jpg" class="logo">
<li class="link one"><a href="/">Coding Hub</a></li>
</div>
</nav>
<h1 class="hero--text">
Word Puzzle
</h1>
<div class="instruction">
<div class="details">
<h2>Kindly fill your login credentials:</h2>
<form class="login" action="puzzle.html" method="GET">
<div class="line1" style="height: 48px;">
<div class="box">
<input type="email" name="Email" id="email" placeholder="Email-ID" class="Input" maxlength="" required="" onblur="validate()" onfocus="show()" autocomplete="off">
</div>
<div id="req" class="hide">Must be a valid email address.</div>
</div>
<div class="line" style="height: 48px;margin-top:20px;">
<div class="box">
<input type="number" id="team" maxlength="2" name="Team" class="Input" placeholder="Team No." required="" readonly autocomplete="off">
</div>
</div>
<div class="line" style="height: 48px;margin-top:20px;">
<div class="box">
<input type="input" name="Name" placeholder="First Name only" class="Input" maxlength="" required="" autocomplete="off">
</div>
</div>
<div class="buttonline" style="height:56px;margin-top:20px;">
<div class="buttonbox" style="height:56px;width:320px;margin: 0 auto;">
<input type="submit" id="Start" value="Start Game">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<!--hero container end-->
</body>
</html>