-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
62 lines (56 loc) · 2.04 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="Preencha facilmente o pontomais">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="144x144" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="manifest.json">
<link rel="mask-icon" href="safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="favicon.ico">
<meta name="msapplication-config" content="browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="style.css">
<title>pontomenos</title>
</head>
<body>
<div id="myModal" class="modal">
<div class="modal-content">
<span id="close" class="close" onclick="closeModal()">×</span>
<p id="message">Ponto registrado com sucesso.</p>
</div>
</div>
<header>
<img src="pontomenos.png" id="logo" alt="pontomenos" width="300" height="58">
</header>
<section>
<form id="myForm" method="post" onsubmit="return submitForm()">
<div class="field">
<label>Seu email:</label>
<input id="email" type="text" autofocus>
</div>
<div class="field">
<label>Sua senha:</label>
<input id="password" type="password">
</div>
<div class="field">
<button id="submit" type="submit">Registrar Ponto</button>
</div>
</form>
</section>
<footer class="footer">
<p id="lastTimeclock"></p>
</footer>
<script src="script.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-103247273-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>