-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (56 loc) · 2.24 KB
/
index.html
File metadata and controls
59 lines (56 loc) · 2.24 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 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">
<title>Memory Game</title>
<link rel = "stylesheet"
href = "css/custom.css"
type = "text/css">
<script
src="https://code.jquery.com/jquery-3.4.1.js"
integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="
crossorigin="anonymous"></script>
<script src="js/script.js" defer></script>
</head>
<body class = "startScreen">
<h1 class = "startScreenTitle">Memory Game</h1>
<div class = "infoContainer">
<form enctype="multipart/form-data" action = "gameBoard.php" method = "POST" class = "playGameContainer">
<div class = "playerInfo">
<div class = "playerAvatar" id = "avatarID">
<img id = "avatarImage" src = "images/avatar_sad.png">
<input type = 'hidden' class = 'hiddenAvatarImage' name = 'imageName' value = 'images/avatar_sad.png'>
</div>
<input type = "text"
name = "username"
id = "username"
placeholder = "Username...">
</div>
<h3 class = 'dimensionsTitle'>Choose Difficulty</h3>
<div class = "chooseLevel">
<div class = "levelLabel activeLevel" id = 'easyButton'>
Easy
</div>
<div class = "levelLabel" id = 'mediumButton'>
Medium
</div>
<div class = "levelLabel" id = 'hardButton'>
Hard
</div>
<div class = "levelLabel" id = 'impossibleButton'>
Impossible
</div>
<div id = "levelInput">
<input type = 'hidden' name = 'level' class = 'levelRadio' id = 'easySubmit' value = 'Easy'>
</div>
</div>
<input type = "submit"
name = "playGame"
id = "playGame"
value = "Play">
</form>
</div>
</body>
</html>