-
Notifications
You must be signed in to change notification settings - Fork 0
/
login-page.html
132 lines (96 loc) · 4.78 KB
/
login-page.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
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
131
132
<!DOCTYPE html>
<html lang="pt-br">
<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 CSS STYLE ------->
<link rel="stylesheet" href="assets/css/style.css">
<!--LINK CSS LOGIN -->
<!-- <link rel="stylesheet" href="assets/css/login.css"> -->
<!------ LINK FONTAWESOME ------->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!----- LINK SLICK JS ------>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.css">
<!--icon Dark-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" />
<!-- SCRIPT JIVOCHAT -->
<script src="//code.jivosite.com/widget/1YD6UYyWt8" async></script>
<title>E-Ecommerce - Login</title>
<script src="assets/js/login.js" defer></script>
</head>
<body style="background-color: var(--secundary-background);">
<!-- LOGIN PAGE -->
<section class="login-page">
<div class="login-container">
<div class="login-register" id="img-login-register">
<section>
<h1><b>E</b>-Ecommerce</h1>
<!-- REGISTRO DE NOVO USURÁIO -->
<div class="register" id="reg">
<h3>
Ainda não é nosso cliente?
<br><br>
Cadastre-se agora e receba <b> 10% de desconto</b>
<br>
na sua primeira compra
</h3>
<div class="login-medias-socials">
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-instagram"></i></a>
<a href=""><i class="fa-brands fa-facebook-f"></i></a>
</div>
<button class="btn-all" onclick="location.href = 'register-page.html'"
style="margin-left: 40px; margin-top: 30px;">
<p>Cadastrar</p>
</button>
</div>
</section>
</div>
<!-- LOGIN -->
<form class="login-sign-in" id="chenge-theme">
<section>
<div id="loginID">
<h1>Login</h1>
<div class="sign-in">
<input id="email" type="email" name="email" class="email" placeholder="E-mail" required>
<input id="senha" type="password" name="password" class="password" placeholder="Senha"
required>
</div>
</div>
<!-- <div class="remember-password">
<p>Lembrar senha</p>
<input type="checkbox" name="remember-password" id="remember-password">
</div> -->
<div class="btnLogin">
<input id="login-btn" type="button" class="btn-all" value="Entrar" />
</div>
<div class="esqueci-a-Senha">
<a href="#" id="registrar-pagina-login">
<p>Esqueceu a senha?</p>
</a>
</div>
<div>
<a href="register-page.html" id="registrar-pagina-login">
<p>Não tem uma conta?</p>
</a>
</div>
</section>
</form>
</div>
</section>
<!-- SWEETALERT PERSONALIZADO -->
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-------------- SCRIPT SLICK JS ------------------->
<script src="https://unpkg.com/scrollreveal"></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script>
<!------ SCRIPT - FEATHERICONS ------->
<!-- <script src="assets/js/index.js"></script> -->
</body>
</html>