-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsign.html
26 lines (22 loc) · 998 Bytes
/
sign.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
<html>
<head>
<link rel="stylesheet" href="css/sign.css">
</head>
<div id="login-box">
<div class="left">
<h1>Sign up</h1>
<input type="text" name="username" placeholder="Username" />
<input type="text" name="email" placeholder="E-mail" />
<input type="password" name="password" placeholder="Password" />
<input type="password" name="password2" placeholder="Retype password" />
<input type="submit" name="signup_submit" value="Sign Up" />
</div>
<div class="right">
<span class="loginwith">Sign in with<br />social network</span>
<a href="https://www.facebook.com/"><button class="social-signin facebook">Log in with facebook</button></a>
<a href="https://twitter.com/i/flow/login"><button class="social-signin twitter">Log in with Twitter</button></a>
<a href="https://mail.google.com/"><button class="social-signin google">Log in with Google+</button></a>
</div>
<div class="or">OR</div>
</div>
</html>