-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.html
More file actions
80 lines (74 loc) · 2.22 KB
/
SignUp.html
File metadata and controls
80 lines (74 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>SignUp</title>
<meta charset="utf-8"/>
<meta name="viewport" content="initial-scale=1.0, user-scalable=yes"/>
<link rel="stylesheet" href="style.css">
</head>
<style>
#box{
width: 75%;
height: 500px;
background-color: #525252;
margin: 0 auto;
position: relative;
bottom: 150px;
z-index: -1;
}
label{
border-color:white;
border-width: 2px;
border-style: groove;
background-color:#808080;
color: white;
}
input{
border-color:white;
border-width: 2px;
border-style: groove;
background-color:#808080;
color: white;
}
.test{
text-align: center;
font-family: sans-serif, Helvetica,Arial;
}
</style>
<body>
<h1 class="one">B Squared Zone</h1>
<nav>
<ul>
<li>
<a id="NavA" href="index.html">Home page</a>
</li>
<li>
<a id="NavA" href="GamePage.html">Game page</a>
</li>
<li>
<a id="NavA" href="https://github.com/timelord200410">Github</a>
</li>
<li>
<a id="NavA" href="SignUp.html">Game SignUp</a>
</li>
</ul>
</nav>
<div class="test">
<form method="get">
<label for="NameForGame">Name For Game:</label>
<!--I want a user to enter the name of the game-->
<input type="text" id="NameForGame" name="NameForGame" placeholder="Bob Here" size="50px" maxlength="75"><br/><br/>
<!--I want to know if they made the 3D or 2D-->
<label for="GameD">What D is you game:</label>
<input type="checkbox" id="GameD" name="GameD" value="D2">2D
<input type="checkbox" id="GameD" name="GameD" value="D3">3D
<br/><br/>
<!--Getting the games file as a zip-->
<label for="GameFile">Game File:</label>
<input type="file" id="GameFile" name="GameFile"><br/><br/>
<input type="submit" value="Submit">
</form>
</div>
<div id="box"></div>
</body>
</html>