-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.html_todo
86 lines (72 loc) · 2.74 KB
/
admin.html_todo
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en" class="h-100">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/@fortawesome/[email protected]/css/all.min.css">
<title>Shorty</title>
<style>
.bg {
animation: slide 3s ease-in-out infinite alternate;
background-image: linear-gradient(-60deg, rgb(60, 15, 86) 50%, rgb(16, 26, 93) 50%);
bottom: 0;
left: -50%;
opacity: .5;
position: fixed;
right: -50%;
top: 0;
z-index: -1;
}
.bg2 {
animation-direction: alternate-reverse;
animation-duration: 4s;
}
.bg3 {
animation-duration: 5s;
}
@keyframes slide {
0% {
transform: translateX(-25%);
}
100% {
transform: translateX(25%);
}
}
</style>
</head>
<body class="h-100 d-flex justify-content-center align-items-center text-white">
<div class="bg"></div>
<div class="bg bg2"></div>
<div class="bg bg3"></div>
<main class="rounded-3 shadow bg-dark">
<div class="px-3 pb-1 pt-2">
<h5 class="m-0">URL Shortener</h5>
</div>
<div class="px-3 py-0 mb-3 border-bottom border-secondary">
<p>This is a Simple URL Shortener created by me and backed by<br />
<a href="https://workers.cloudflare.com/">Cloudflares amazing Workers</a>
</p>
</div>
<div class="px-3 border-bottom border-secondary">
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="https://example.com">
<button class="btn btn-primary" type="button">Short!</button>
</div>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Shortened link will be here" readonly>
</div>
</div>
<div class="d-inline-flex justify-content-between w-100 p-1 px-2">
<div class="d-inline-flex">
<a href="https://github.com/Complexicon/url-shortener" class="text-white fs-5">
<i class="fa-brands fa-github me-1"></i>
</a>
</div>
<div class="text-muted">with ❤️ by cmplx</div>
</div>
</main>
</body>
</html>