-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
58 lines (58 loc) · 2.91 KB
/
registration.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/chick.svg" sizes="400x" >
<link rel='stylesheet' href="css/login_form.css">
<link rel='stylesheet' href="css/registration.css">
<script src="https://smtpjs.com/v3/smtp.js"></script>
<title>Registration</title>
</head>
<body>
<div class="outer">
<center>
<div class="inner1">
<img src="./img/chick.svg" alt="img" id="chick">
<h1>Eggcare</h1>
<form autocomplete="off" class="form-group" action="#" id="signup-form">
<input type="text" placeholder="UserName" name="name" id="text" class="common"required><br>
<input onkeyup="mail_check()" type="email" placeholder="Mail-Id" name="email" id="email" class='common' required><br>
<div class="email_error_box">Please Enter valid mail id</div>
<input type="tel" placeholder="Mobile Number"id='phone_number' name="mobile" class="common" required><br>
<input onkeyup="pass_check()" onmouseover="showPass('password')" onmouseout="hidePass('password')" type="password" placeholder="Password" id='password' name="password" class='common' required><br>
<div class="password_checker"><span class="text"></span></div>
<input onkeyup="cnfrm_pass()" onmouseover="showPass('cnfrm_password')" onmouseout="hidePass('cnfrm_password')" type="password" placeholder="Confrom Password" id='cnfrm_password' name="confirmPassword" class='common' required><br>
<div class="password_match"><span class="text1"></span></div><br>
<button type="submit" class="submit">Submit</button>
<div class="signup">
<h2>Already have an account-> <a href="login.html"><b>SignIn</b></a></h2>
</div>
</form>
</div>
</center>
</div>
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.17.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.17.1/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.0/firebase-analytics.js"></script>
<script>
var firebaseConfig =
{
apiKey: "AIzaSyC1UPeCM8havf8lspXd3dDpo4lYVV9UQMs",
authDomain: "egg-care-product.firebaseapp.com",
projectId: "egg-care-product",
storageBucket: "egg-care-product.appspot.com",
messagingSenderId: "263365711071",
appId: "1:263365711071:web:7b68ae842d5ffbb846456a",
measurementId: "G-Q8DLPJP5R3"
};
firebase.initializeApp(firebaseConfig);
firebase.analytics();
const auth = firebase.auth();
const db = firebase.firestore();
</script>
<script src="js/registeration.js"></script>
</body>
</html>