-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbeta.html
executable file
·90 lines (71 loc) · 3.82 KB
/
beta.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<!--[if IE 9 ]><html class="ie9"><![endif]-->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<meta name="format-detection" content="telephone=no">
<meta charset="UTF-8">
<title>You Me OS Login</title>
<!-- CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/form.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/generics.css" rel="stylesheet">
</head>
<body id="skin-blur-violate">
<section id="login">
<header>
<h1>You Me OS</h1>
<p>
... & in the 8th day; God created You Me OS, and it was AWESOME!
</p>
</header>
<div class="clearfix"></div>
<!-- Login -->
<form class="box tile animated active" id="box-login">
<h2 class="m-t-0 m-b-15">Ready for Beta Testers!</h2>
<input type="text" class="login-control m-b-10" placeholder="Username or Email Address">
<!-- <input type="password" class="login-control" placeholder="Password"> -->
<!-- <div class="checkbox m-b-20">
<label>
<input type="checkbox">
Remember Me
</label>
</div> -->
<button class="btn btn-sm m-r-5">Sign Up</button>
<!-- <small>
<a class="box-switcher" data-switch="box-register" href="">Don't have an Account?</a> or
<a class="box-switcher" data-switch="box-reset" href="">Forgot Password?</a>
</small> -->
</form>
<!-- Register -->
<form class="box animated tile" id="box-register">
<h2 class="m-t-0 m-b-15">Register</h2>
<input type="text" class="login-control m-b-10" placeholder="Full Name">
<input type="text" class="login-control m-b-10" placeholder="Username">
<input type="email" class="login-control m-b-10" placeholder="Email Address">
<input type="password" class="login-control m-b-10" placeholder="Password">
<input type="password" class="login-control m-b-20" placeholder="Confirm Password">
<button class="btn btn-sm m-r-5">Register</button>
<small><a class="box-switcher" data-switch="box-login" href="">Already have an Account?</a></small>
</form>
<!-- Forgot Password -->
<form class="box animated tile" id="box-reset">
<h2 class="m-t-0 m-b-15">Reset Password</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla eu risus. Curabitur commodo lorem fringilla enim feugiat commodo sed ac lacus.</p>
<input type="email" class="login-control m-b-20" placeholder="Email Address">
<button class="btn btn-sm m-r-5">Reset Password</button>
<small><a class="box-switcher" data-switch="box-login" href="">Already have an Account?</a></small>
</form>
</section>
<!-- Javascript Libraries -->
<!-- jQuery -->
<script src="js/jquery.min.js"></script> <!-- jQuery Library -->
<!-- Bootstrap -->
<script src="js/bootstrap.min.js"></script>
<!-- Form Related -->
<script src="js/icheck.js"></script> <!-- Custom Checkbox + Radio -->
<!-- All JS functions -->
<script src="js/functions.js"></script>
</body>
</html>