-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (46 loc) · 2.17 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="viewport" content="width=device-width, initial-scale=1.0">
<title> Paseme Client Web </title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<meta name="author" content="paseme">
<meta name="robots" content="noindex, nofollow">
<meta name="description" content="Página do cliente web no paseme.">
<meta name="keywords" content="paseme, pasemeapp">
<link rel="stylesheet" href="./src/css/Computer.css">
<link rel="stylesheet" href="./src/css/Mobile.css">
<link rel="shortcut icon" href="./src/img/icon512.png" type="image/png">
<link rel="manifest" href="./src/manifest.json">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
</head>
<body>
<div class="screen">
<div class="header">
<div class="header-primarytext"> Olá, espere </div>
<div class="header-secondarytext"> um momento </div>
</div>
<div class="window">
<div class="window-time">
<div class="window-time-hour"> 00:00 AM </div>
<div class="window-time-day"> 01 de janeiro de 2000 </div>
</div>
<div class="window-center">
<div class="window-center-code">
A123
</div>
<div class="window-center-estimation">
Estimativa de 00 minutos
</div>
</div>
<div class="window-button-area">
<button> Sair da fila </button>
</div>
</div>
</div>
<script src="./src/js/script.js"></script>
</body>
</html>