-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 2.08 KB
/
index.html
File metadata and controls
42 lines (40 loc) · 2.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Shiftlog | Release Notes Management System</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Poppins' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
body {
font-family: 'Poppins', sans-serif;
}
</style>
</head>
<body>
<div class="container mx-auto my-5">
<h1><strong>Shiftlog</strong></h1>
<br>
<h3>A minimal frontend to demonstrate the capabilities of Shiftlog</h3>
<span>A fast, efficient, and secure system to create, manage, and publish Release Notes for your apps/products.</span>
<br><br><br><br>
<h5>🚀 Blazingly Fast APIs written in Go</h5>
<h5>🔖 Supports Release Notes in multiple formats (Plain Text, Markdown and HTML)</h5>
<h5>🔒 Fully Secure Backend with JWT Auth Tokens</h5>
<br><br><br>
<span>It is highly reccomended that you create your own frontend using the APIs provided. This site is only to demonstrate the capabilities of Shiftlog and act as a refference for API calls</span>
<br><br><br>
<a href="https://github.com/coderGtm/Shiftlog" class="btn btn-dark"><i class="fa-brands fa-github mx-2"></i>Shiftlog on GitHub</a>
</div>
<div class="container mx-auto my-5">
<hr>
<a href="/signup" class="btn btn-outline-primary">Signup</a>
<a href="/login" class="btn btn-outline-primary">Login</a>
<br><br>
<a href="/dashboard" class="btn btn-warning">Dashboard</a>
</div>
</body>
</html>