forked from prabhanshuguptagit/infox16
-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.php
54 lines (43 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Login | Signup InfoX 2016</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Dosis:100,300,400,700,900,300italic,400italic,700italic,900italic" type="text/css" media="all">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
</head>
<body style="background-color:#000000">
<?php include'includes/general/header.php'?>
<div class="signup" style="background-image: url(img/back.png)">
<div class="middle">
<div class="signup-widget widget">
<div class="widget-header">
<table>
<tbody><tr>
<td id="tab-login">
<a href="login.php">
Login
</a>
</td>
<td><a href="index.html"><img width="150px" src="img/logo-infox.png"></a></td>
<td id="tab-signup" class="current">
<a href="signup.php">Register</a>
</td>
</tr>
</tbody></table>
</div>
<div class="widget-body">
<form id="signup-form" method="post" action="#"><!--><!-->
<input type="email" name="email" placeholder="Email">
<input type="password" name="password" placeholder="Password">
<input type="password" name="confirm_password" placeholder="Re-Type Password">
<div id="password-characters"></div>
<button id="submit" type="submit"><span class="ui-icon"></span> Sign Up</button>
</form>
</div>
</div>
</div>
</div>
</script>
</body></html>