-
Notifications
You must be signed in to change notification settings - Fork 260
/
registro_concluido.html
38 lines (38 loc) · 1.41 KB
/
registro_concluido.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Doguito Petshop | Registro concluído</title>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/css/base/base.css" />
<link rel="stylesheet" href="./assets/css/cadastro_concluido.css" />
<link rel="stylesheet" href="./assets/css/componentes/card.css" />
<link rel="stylesheet" href="./assets/css/componentes/inputs.css" />
<link rel="stylesheet" href="./assets/css/componentes/button.css" />
</head>
<body>
<main class="container flex flex--column flex--center">
<div class="cadastro-cabecalho">
<img
src="./assets/img/doguito.svg"
alt="Logo Doguito"
class="registry-header__logo"
/>
<h1 class="registry-header__title">PetShop</h1>
</div>
<section class="registry-card cartao">
<span class="registry-card__icon-complete"></span>
<h1 class="registry-card__title card__title">¡Registro completado!</h1>
<a href="#" class="button">Acceder</a>
</section>
</main>
</body>
</html>