-
Notifications
You must be signed in to change notification settings - Fork 0
/
SignUpPage.html
33 lines (23 loc) · 1.12 KB
/
SignUpPage.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
<html><head>
<title> Signup Form Design Tutorial </title>
<link rel="stylesheet" type="text/css" href="H:\webDevelopment\Javascript\sports_tournament\tournamentManagementWireFrame_files\SignUpStyle.css">
</head>
<body>
<div id="login-box">
<div class="left-box">
<h1> Sign Up</h1>
<input type="text" name="username" placeholder="Username">
<input type="text" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<input type="password" name="password2" placeholder="Retype password">
<input type="submit" name="signup-button" value="Sign Up">
</div>
<div class="right-box">
<span class="signinwith">Sign in with<br>Social Network </span>
<button class="social facebook">Log in with Facebook</button>
<button class="social twitter">Log in with Twitter</button>
<button class="social google">Log in with Google+</button>
</div>
<div class="or">OR</div>
</div>
</body></html>