-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (51 loc) · 2.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META -->
<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="description" content="This is a project for knitters. Credits to Flaticon.com for all the correspondents images.">
<meta name="author" content="Tobías Videla">
<!-- TITLE -->
<title>CrochetMind | Login</title>
<!-- FAVICON -->
<link rel="shortcut icon" href="./images/icons/Favicon-Flaticon.png" type="image/x-icon">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="./styles/style.css">
<link rel="stylesheet" type="text/css" href="./styles/form.css">
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css">
<!-- FONTAWESOME -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer"/>
</head>
<body class="body">
<section class="section-form d-flex flex-column justify-content-center align-items-center">
<div class="container-form d-flex flex-column align-items-center justify-content-center">
<p class="section-title">
<i class="fa-solid fa-door-open"></i>
</p>
<form action="" class="form">
<div class="form-group d-flex flex-column">
<input type="text" name="mail" id="mail" placeholder="Username">
<span class="icon-input"><i class="fa-solid fa-envelope"></i></span>
</div>
<div class="form-group d-flex-column">
<input type="password" name="password" id="password" placeholder="Password">
<span class="icon-input" id="icon-input"><i class="fa-solid fa-eye" id="eye"></i></span>
</div>
</form>
</div>
<a class="log-btn" href="./pages/home.html">Go CrochetMind!</a>
</section>
<footer class="d-flex flex-column justify-content-center align-items-center">
<a class="credits" href="https://github.com/tobiasvidela" target="_blank" rel="noopener noreferrer">
Created by Tobías Videla G. (2023) © | Work In Progress...
</a>
</footer>
<!-- SCRIPTS -->
<script src="./scripts/login.js"></script>
<!-- BOOTSTRAP -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>