-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
29 lines (26 loc) · 887 Bytes
/
Copy pathmain.html
File metadata and controls
29 lines (26 loc) · 887 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GAMES</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<img src="/sources/bg.jpg">
<div class="container">
<div class="form">
<p>SIGN UP</p>
<div class="inputforms">
<input class="inputform" type="text" placeholder="username">
<input class="inputform" type="email" placeholder="example@gmail.com">
<input class="inputform" type="password" placeholder="password">
<input class="inputform" type="password" placeholder="re-password">
</div>
<div class="buttonform">
<button type="submit">Create Account</button>
</div>
</div>
</div>
</body>
</html>