-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
130 lines (112 loc) · 5.25 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<?php
error_reporting(0);
session_start();
if($_SESSION['email'] != '') {
header('Location: /my-gallery');
}
require './database/_db_connect.php';
?>
<!doctype html>
<html lang="en">
<head>
<title>limitless cloud</title>
<?php include './asset/header.php'; ?>
<link rel="stylesheet" href="http://localhost/public/css/signup.css?ver=1.8">
</head>
<body>
<?php include './asset/navbar.php'; ?>
<!-- loader -->
<div class="loading">
<div class="spinner-border text-center text-primary" style="width: 3rem; height: 3rem;" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<!-- forms -->
<section>
<div class="container">
<!-- forgot password -->
<div class="user forgotBx" id="forgotBx">
<div class="formBx">
<h2>Forgot Password</h2>
<div class="form-group my-3">
<input type="email" name="" class="form-control" placeholder="Email Address">
</div>
<div class="d-flex justify-content-between">
<button class="signup text text-nowrap"> Sign up here</button>
<button class="signin text text-nowrap">Sign in here</button>
</div>
<div class="d-grid gap-2 my-3">
<button class="btn py-2 default-btn" id="forgot-btn">Send Link</button>
</div>
</div>
<div class="imgBx">
<img src="http://localhost/public/image/smoke.jpg" height="400" width="300" alt="">
</div>
</div>
<!-- sign up -->
<div class="user signupBx" id="signupBx">
<div class="formBx">
<h2>Create an account</h2>
<div class="my-3" id="signup_warn"></div>
<div class="form-group my-3">
<input type="text" id="name" class="form-control" placeholder="Full Name">
</div>
<div class="form-group my-3">
<input type="email" id="email" class="form-control" placeholder="Email Address">
</div>
<div class="form-group my-3">
<input type="password" id="password" class="form-control" placeholder="Password">
</div>
<!-- <div class="d-flex justify-content-center">
<div class="h-captcha" data-sitekey="80a976d5-36a7-4a03-affb-71c3354619f8" required></div>
</div> -->
<!-- <div class="form-check">
<input class="form-check-input" type="checkbox" id="showPass">
<label class="form-check-label" for="flexCheckDefault">
Show Password
</label>
</div> -->
<button class="signin btn text text-nowrap"> Sign in here</button>
<div class="d-grid gap-2 my-3">
<button class="btn py-2 default-btn" id="signup-btn">Create Account</button>
</div>
</div>
<div class="imgBx">
<img src="http://localhost/public/image/smoke.jpg" height="400" width="300" alt="">
</div>
</div>
<!-- sign in -->
<div class="user signinBx" id="signinBx">
<div class="imgBx">
<img src="http://localhost/public/image/smoke.jpg" height="400" width="300" alt="">
</div>
<div class="formBx">
<h2>Sign In</h2>
<div class="my-3" id="login_warn"></div>
<div class="form-group my-3">
<input type="email" id="email" class="form-control" placeholder="Email Address">
</div>
<div class="form-group my-3">
<input type="password" id="password" class="form-control" placeholder="Your Password">
</div>
<div class="d-flex justify-content-between">
<button class="signup text text-nowrap"> Sign up here</button>
<button class="forgot text-danger text-nowrap">Forgot Password</button>
</div>
<div class="d-grid gap-2 my-3">
<button class="btn py-2 default-btn" id="login-btn">Log In</button>
</div>
<div class="my-4 text-center bold"><span class="text-muted text-center">or</span></div>
<div class="d-grid gap-2 my-3">
<div id="my-signin2"></div>
<!-- <button class="btn py-2 default-btn">With facebook</button> -->
</div>
</div>
</div>
</div>
</section>
<?php include './asset/footer.php'; ?>
<script src="http://localhost/controller/js/index.js?ver=1.8"></script>
<script src="https://apis.google.com/js/platform.js?onload=renderButton" async defer></script>
</body>
</html>