-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
46 lines (35 loc) · 2.39 KB
/
home.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">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ClipX</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lobster&display=swap" rel="stylesheet">
</head>
<body class=" bg-warning bg-opacity-25 " style="text-align: center;">
<img src="logo.png" alt="clipboard logo" style="height: 100px; margin-top: 5%;"/>
<h1 class="fw-bolder text-center" style="font-family: 'Lobster', cursive; color:darkblue;">Clip-X</h1>
<h5 class="fw-semibold text-center" style="color: darkblue;">an Online Clipboard</h5>
<form action="/create" method="post">
<input type="text" name="id" class="form-control mx-auto text-center" style="margin-top:10% ; width: 20%;"
placeholder="Enter clip id" required>
<div style="margin-top:5% ;" class="d-flex justify-content-center">
<button style="margin:2% ; " type="submit" class="btn btn-outline-danger" >Create Clip</button>
<button type="submit" style="margin:2% ; " class="btn btn-outline-danger" formaction="/retrive">Retrive Clip</button>
</div>
</form>
<footer><div class="alert alert-warning border border-warning mx-auto " role="alert" style="width:fit-content; margin-top: 5%;">
<p class="font-weight-normal text-danger text-center"
style="font-weight:lighter; font-size:medium;">We store your data only for 24 hours. After that it will be automatically deleted. This is an open source project and you can access the source code <a href="https://github.com/sushilkhadkaanon/clip-X">Click Me</a></p>
</div></footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
</div>
</body>
</html>