-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (24 loc) · 1.21 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
<!DOCTYPE html>
<html class="h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Welcome to KKuTuCS</title>
<!-- CSS -->
<link rel="stylesheet" href="public/css/css.min.css">
</head>
<body class="h-100 d-flex flex-column justify-content-center align-content-center">
<div class="border mx-auto w-100 bg-light shadow-hoverable" style="max-width: 20rem;">
<div class="p-4 text-center">
<img class="m-4" src="./public/img/logo.png" alt="logo" href="index.html" style="width: 7rem; -webkit-filter: drop-shadow(0 .35rem .35rem rgba(0,0,0,.35)); filter: drop-shadow(0 .35rem .35rem rgba(0,0,0,.35)); ">
<h3> Welcome!</h3>
<form class="my-5" action="./game.html">
<input type="text" id="inputname" class="text-center form-control shadow-hoverable-sm mb-3" name="nickname" placeholder="Input your nickname" maxlength="8" autofocus required>
<button class="btn btn-block btn-lg btn-primary shadow-hoverable-sm" type="submit">Join</button>
</form>
<p class="m-0 small text-muted">© 2018 by KKuTuCS All Rights Reserved.</p>
</div>
</div>
</body>
</html>