-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
53 lines (52 loc) · 2.08 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
<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Contactos Sign In</title>
<script type="text/javascript" src="js/md5.js"></script>
<script type="text/javascript" src="js/code.js"></script>
<link href="css/signin.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
</head>
<body class="text-center">
<main class="form-signin">
<form>
<img class="mb-4" src="images/logo.png" alt="" width="100" height="100">
<h1 class="h2 mb-2 fw-normal">Welcome to Contactos</h1>
<br>
<h2 class="h3 mb-3 fw-normal">Please sign in</h2>
<div class="form-floating">
<input type="username" class="form-control" id="loginName" placeholder="Username">
<label for="floatingInput">Username</label>
</div>
<div class="form-floating">
<input type="password" class="form-control" id="loginPassword" placeholder="Password">
<label for="floatingPassword">Password</label>
</div>
<br>
<button class="w-100 btn btn-lg btn-primary" type="button" onclick="doLogin(1);">Sign in</button>
<br>
<br>
<span class="mt-5 mb-3 text-muted" id="loginResult"></span>
<br>
<br>
<p class="mt-5 mb-3 text-muted">Not a registered user?</p><p>
<button class="btn btn-primary btn-sm" type="button" onclick="window.location.href='signup.html'">Sign up</button>
</p><p class="mt-5 mb-3 text-muted">© 2021 Group15apps <a href="indexSpanish.html">Spanish</a></p>
</form>
</main>
</body></html>