-
Notifications
You must be signed in to change notification settings - Fork 0
/
plogreg.html
68 lines (65 loc) · 1.95 KB
/
plogreg.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
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-image: url("https://img.freepik.com/free-photo/abstract-background-illustration-watercolor-blue-green_53876-108704.jpg?size=626&ext=jpg&ga=GA1.1.2082370165.1716595200&semt=ais_user");
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100%;
}
.crntst,.dtlrec{
text-decoration : none;
background-color: rgb(60, 188, 199);
color: black;
border-color: black;
display: inline-block;
padding: 20px 30px;
margin-top: 30px;
margin-left: 500px;
border-radius: 20px;
font-size: 40px;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
cursor: pointer;
}
h1{
padding-left: 1000px;
font-size: 50px;
font-family: Arial, Helvetica, sans-serif;
padding-top: 10px;
}
p{
font-size: 35px;
font-family: Arial, Helvetica, sans-serif;
padding-left: 1200px;
}
.hombtn{
text-decoration: none;
padding: 10px;
background-color: rgb(176, 174, 174);
border-radius: 20px;
color: black;
margin-top: 200px;
margin-left: 1000px;
font-size: 25px;
font-family: Arial, Helvetica, sans-serif;
border: none;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome, {{ user_name }}</h1>
<p>ID : {{ user_id }}</p>
<a class="crntst" href="">Current Status</a><br>
<a class="dtlrec" href="">Detailed Record</a><br>
<a class="hombtn" href="home">Home</a>
</div>
</body>
</html>