-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
59 lines (59 loc) · 2.14 KB
/
index.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Login & Sign Up Form</title>
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/css?family=Open+Sans:400,300'>
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/icon?family=Material+Icons'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="cotn_principal">
<div class="cont_centrar">
<div class="cont_login">
<div class="cont_info_log_sign_up">
<div class="col_md_login">
<div class="cont_ba_opcitiy">
<h2>LOGIN-HEAD</h2>
<p>Swach Society Login portal for Head</p>
<button class="btn_login" onclick="cambiar_login()">LOGIN</button>
</div>
</div>
<div class="col_md_sign_up">
<div class="cont_ba_opcitiy">
<h2>LOGIN-MEMBER</h2>
<p>Swach Society Login portal for society members</p>
<button class="btn_sign_up" onclick="cambiar_sign_up()">LOGIN</button>
</div>
</div>
</div>
<div class="cont_back_info">
<div class="cont_img_back_grey">
<img src="images/gosociety.png" alt="Swach-Society" />
</div>
</div>
<div class="cont_forms">
<div class="cont_img_back_">
<img src="images/gosociety.png" alt="Swach-Society" />
</div>
<div class="cont_form_login">
<a href="#" onclick="ocultar_login_sign_up()" ><i class="material-icons"></i></a>
<h2>LOGIN</h2>
<input type="text" placeholder="NAME" />
<input type="text" placeholder="ADHAAR-NO" />
<a href="https://console.firebase.google.com/project/jecrc-hackathon/database/jecrc-hackathon/data"><button class="btn_login" onclick="cambiar_login()">LOGIN-HEAD</button></a>
</div>
<div class="cont_form_sign_up">
<a href="#" onclick="ocultar_login_sign_up()"><i class="material-icons"></i></a>
<h2>LOGIN-MEMBER</h2>
<input type="text" placeholder="NAME" />
<input type="text" placeholder="ADHAR-NO" />
<a href="second.html"><button class="btn_sign_up" onclick="cambiar_sign_up()">LOGIN-MEMBER</button></a>
</div>
</div>
</div>
</div>
</div>
<script src="javascript/index.js"></script>
</body>
</html>