-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (71 loc) · 3.43 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
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
<!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">
<meta name="language" content="pt-BR">
<title>Provisionamento FTTH Naxos Telecom</title>
<link rel="shortcut icon" href="favicon.ico">
<!-- meta tags seo -->
<meta name="description" content="Página voltada para a Empresa Naxos Telecom, para estar realizando ativações de clientes na rede FTTH na OLT Nokia utilizando ONU/ONT">
<meta name="robots" content="">
<meta name="author" content="Jean Carlos">
<meta name="keywords" content="naxos, telecom, internet, fibra, velocidade, ativação, ftth, gpon, nokia, onu, ont, optica">
<!-- property og: -->
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://jeancarloshs.github.io/provisionamento/">
<meta property="og:title" content="">
<meta property="og:image" content="https://jeancarloshs.github.io/provisionamento/img/naxos_telecom_logo.png">
<meta property="og:description" content="Página voltada para a Empresa Naxos Telecom, para estar realizando ativações de clientes na redes FTTH na OLT Nokia utilizando ONU/ONT">
<meta property="article:author" content="Jean Carlos">
<!-- final meta tags seo -->
<!-- inicio estilos css -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/grid.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/login.css">
<link rel="stylesheet" href="css/modal.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.js"></script>
</head>
<body>
<header class="header">
<div class="container">
<a href="#" class="grid-4">
<img src="./img/naxos_telecom_logo.png" alt="Naxos Telecom" />
</a>
</div>
</header> <!-- header -->
<section class="container">
<div class="grid-6 formLogin box">
<form id="formFormulario" method="POST" class="formFormulario">
<h2>Login</h2>
<label for="email"></label>
<input type="email" id="email" name="email" placeholder="Email" class="inputEmail" data-rules="required|min=3">
<label for="password"></label>
<input type="password" id="senhaUsuario" name="password" placeholder="Senha" class="inputPWD" data-rules="required|min=8">
<!-- <label for="confirmePWD"></label>
<input type="text" id="confirmePWD" name="confirmePWD" placeholder="Confirme a senha" class="inputPWD" data-rules="required|min=1"> -->
</form>
<button type="submit" id="btnLogin" name="btnLogin" class="btn btnLogin inputLogin" onclick="fazLogin()">Login</button>
<button type="submit" id="btnLimpaLogin" name="btnLimpaLogin" class="btn BtnCopiar btnAcoes inputLogin" onclick="apagaLogin(event)">Limpar</button>
<br />
</div>
</section>
<footer>
<div class="footer">
<div class="container">
<div class="copy">
<p class="grid-12">Naxos Telecom 2022 - Alguns direitos reservados.</p>
</div>
</div>
</div>
</footer>
<script src="./js/Header/Header.js"></script>
<script src="./js/Footer/Footer.js"></script>
<script src="./js/auth.js"></script>
<script src="https://unpkg.com/@supabase/supabase-js"></script>
<!-- <script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js" type="module"></script> -->
</body>
</html>