-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.54 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="/styles/style.css">
<title>Alessandro Gioia's Pong Game Sign-Up</title>
</head>
<body>
<div class="parallax">
<div class="center container-xs centermobile">
<form action="/signup" method="POST" class="bg-dark text-white rounded row needs-validation" style="padding: 30px" id="form">
<h1 class="text-center">Pong Sign-Up</h1>
<a href="https://github.com/DiubiFYT/Pong-Sign-Up"><h5 class="text-center">Github repo</h5></a>
<div class="form-group">
<label>Nickname</label>
<input type="text" class="form-control" name="nickname" id="nickname" placeholder="es. MarioRossi64" required>
</div>
<div class="form-group" style="margin-top: 10px;">
<label>Password</label>
<input type="password" class="form-control" name="password" id="password"
placeholder="Alessandro will keep it secret..." required>
</div>
<button id="btn" style="margin-top: 20px;" type="submit" class="btn btn-primary">Sign-up!</button>
</form>
</div>
</div>
<script>
</script>
</body>
</html>