-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSignup.html
56 lines (46 loc) · 2.24 KB
/
Signup.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
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>signup</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<span class="d-flex justify-content-center bg-success">
<form class="row g-3 border border-0 bg-light mt-5 mb-2 rounded">
<div class="row-auto">
<label for="inputUsername" class="col-sm-2 col-form-label">Username:</label>
<input class="form-control" id="inputUsername">
</div>
<div class="row-auto">
<label for="inputPassword" class="col-sm-2 col-form-label">Password:</label>
<input class="form-control" type="password" id="inputPassword">
</div>
<div class="row-auto">
<label for="inputDisplayName" class="col-sm-2 col-form-label">Display Name:</label>
<input class="form-control" id="inputDisplayName">
</div>
<div class="row pt-2">
<div class="col">
<button type="submit" id="register" class="btn btn-primary mb-3">Register</button>
</div>
<div class="p-2 col">
already registered? click <a href="Login.html">here</a> to log in.
</div>
</div>
</form>
</span>
<script type="text/javascript" , src="playScript.js">
</script>
</body>
</html>