-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogin.html
88 lines (71 loc) · 2.37 KB
/
login.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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>E-Pocket-Login</title>
<link rel="stylesheet" href="./css/login.css">
</head>
<body>
<!-- partial:index.partial.html -->
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel='stylesheet prefetch' href='https://fonts.googleapis.com/icon?family=Material+Icons'>
<body>
<div class="cotn_principal">
<div class="cont_centrar">
<div class="cont_login">
<div class="cont_info_log_sign_up">
<!-- LOGIN -->
<div class="col_md_login">
<div class="cont_ba_opcitiy">
<h2>LOGIN</h2>
<p>Welcome back to E-Pocket, Please Login to your account.</p>
<button class="btn_login" onclick="cambiar_login()">LOGIN</button>
</div>
</div>
<!-- SIGNUP -->
<div class="col_md_sign_up">
<div class="cont_ba_opcitiy">
<h2>SIGN UP</h2>
<p>Welcome to E-Pocket, New user Please Sign-Up.</p>
<button class="btn_sign_up" onclick="cambiar_sign_up()">SIGN UP</button>
</div>
</div>
</div>
<div class="cont_back_info">
<div class="cont_img_back_grey">
<img src="hdd.gif" alt="" />
</div>
</div>
<!-- LOGIN и SIGNUP -->
<div class="cont_forms" >
<div class="cont_img_back_">
<img src="hdd.gif" alt="" />
</div>
<div class="cont_form_login">
<a href="#" onclick="ocultar_login_sign_up()" ><i class="material-icons"></i></a>
<!--<form method="post" action="log.php">-->
<h2>LOGIN</h2>
<input type="text" placeholder="Email" />
<input type="password" placeholder="Password" />
<button class="btn_login" onclick="cambiar_login()"><a href="webpage.html">LOGIN</button>
</div>
<div class="cont_form_sign_up">
<a href="webpage.html" onclick="ocultar_login_sign_up()"><i class="material-icons"></i></a>
<h2>SIGN UP</h2>
<input type="text" placeholder="Email" />
<input type="text" placeholder="User" />
<input type="password" placeholder="Password" />
<input type="password" placeholder="Confirm Password" />
<button class="btn_sign_up" onclick="cambiar_sign_up()"><a href="webpage.html">SIGN UP</button>
<!--</form>-->
</div>
</div>
</div>
</div>
</div>
<script src="js/login.js"></script>
</body>
<!-- partial -->
<script src="./script2.js"></script>
</body>
</html>