forked from SharmaS1402/Certifica_Authentify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.html
46 lines (44 loc) · 1001 Bytes
/
landing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Certificate Management</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
.container {
max-width: 400px;
margin: 50px auto;
text-align: center;
}
.button {
display: block;
width: 100%;
padding: 10px;
margin-bottom: 10px;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: #fff;
text-decoration: none;
cursor: pointer;
}
.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Certificate Management</h1>
<a href="/signup" class="button" id="gen">Signup</a>
<a href="/login" class="button" id="gen">Login</a>
</div>
</body>
</html>