-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignup.php
62 lines (62 loc) · 3.14 KB
/
signup.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Balthazar' rel='stylesheet'>
<link rel="stylesheet" type="text/css" href="css/JiSlider.css">
<link href='https://fonts.googleapis.com/css?family=Stalinist One' rel='stylesheet'>
<script src = "js/JiSlider.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Autour One' rel='stylesheet'>
<script src = "js/jquery.min.js"></script>
</head>
<body>
<div class = "mynav">
<nav class="navbar navbar-inverse navbar-fix navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" style = "color:black; font-size:1.5em" href="#">WebSiteName</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Home</a></li>
<li><a href="#">Page 1</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</div>
</nav>
<div class = "separator container-fluid"> nrwewma</div>
</div><div class = "container" style="padding-top: 10%;padding-right: 10%;padding-left: 10%; padding-bottom: 10%">
<div class = "col-sm-12" style="background-color:black; padding-left: 15%; padding-right: 15% ">
<br>
<h1 style="color:white; font-family: Balthazar; text-align: center; font-size:
4em">Signup</h1><br><br>
<label for="userid" style="font-size: 1.5em; font-family: Balthazar">User ID</label>
<input type="text" id="userid" name="userid" placeholder="User ID">
<label for="password" style="font-size: 1.5em;margin-top: 5%; font-family: Balthazar">Password</label>
<input type="text" id="password" name="password" placeholder="Password">
<label for="email" style="font-size: 1.5em;margin-top: 5%; font-family: Balthazar">Email Address</label>
<input type="text" id="email" name="email" placeholder="Email">
<label for="phone" style="font-size: 1.5em;margin-top: 5%; font-family: Balthazar">Phone</label>
<input type="text" id="phone" name="phone" placeholder="Phone">
<div style="text-align: center; margin-top: 10%;margin-bottom: 10%"><button type="submit" class = "buttonlogin button3">Signup</button></div>
</div>
</div>
</body>
</html>