-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (99 loc) · 3.52 KB
/
Copy pathindex.html
File metadata and controls
100 lines (99 loc) · 3.52 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Task Manager API</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #121212;
color: #ffffff;
}
.container {
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.container h1 {
background-color: seagreen;
padding: 10px;
border-radius: 10px;
}
.container p {
background-color: dimgrey;
padding: 10px;
border-radius: 10px;
margin-bottom: 5rem;
}
footer {
margin-bottom: 50px;
padding: 50px;
border: 1px dotted dimgrey;
margin-top: 5rem;
}
footer a {
color: green;
font-weight: 800;
border: 1px solid whitesmoke;
border-radius: 5px;
padding: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>Task Manager API is Live!</h1>
<p>
This is the backend service. To interact with the endpoints, click the
button below:
</p>
<!-- Paste your Postman snippet here -->
<div
class="postman-run-button"
data-postman-action="collection/fork"
data-postman-visibility="private"
data-postman-var-1="56228563-46d52e54-03a1-4509-bd1c-d0b8886153ca"
data-postman-collection-url="entityId=56228563-46d52e54-03a1-4509-bd1c-d0b8886153ca&entityType=collection&workspaceId=d94d15b1-dbc5-49f8-8097-9c1f168cece6"
data-postman-param="env%5BTask%20Manager%20API(Prod)%5D=W3sia2V5IjoidXJsIiwidmFsdWUiOiIiLCJlbmFibGVkIjp0cnVlLCJ0eXBlIjoiZGVmYXVsdCIsInNlc3Npb25WYWx1ZSI6Imh0dHBzOi8vdGFzay1tYW5hZ2VyLWFwaS10ZW4udmVyY2VsLmFwcCIsImNvbXBsZXRlU2Vzc2lvblZhbHVlIjoiaHR0cHM6Ly90YXNrLW1hbmFnZXItYXBpLXRlbi52ZXJjZWwuYXBwIiwic2Vzc2lvbkluZGV4IjowfSx7ImtleSI6ImF1dGhUb2tlbiIsInZhbHVlIjoiIiwiZW5hYmxlZCI6dHJ1ZSwidHlwZSI6ImRlZmF1bHQiLCJzZXNzaW9uVmFsdWUiOiJleUpoYkdjaU9pSklVekkxTmlJc0luUjVjQ0k2SWtwWFZDSjkuZXlKZmFXUWlPaUkyWVRVNVkyVmpObVV3TVROak5tSm1NalF3WmpRNVpERWlMQ0pwWVhRaU9qRTNPRFF5TnpBM05qZDkuQTV0YmpaWXMySGk3STlMYXN5cm1vSnlQYy1rb291Xy4uLiIsImNvbXBsZXRlU2Vzc2lvblZhbHVlIjoiZXlKaGJHY2lPaUpJVXpJMU5pSXNJblI1Y0NJNklrcFhWQ0o5LmV5SmZhV1FpT2lJMllUVTVZMlZqTm1Vd01UTmpObUptTWpRd1pqUTVaREVpTENKcFlYUWlPakUzT0RReU56QTNOamQ5LkE1dGJqWllzMkhpN0k5TGFzeXJtb0p5UGMta29vdV9mRXp0Q29DdU5IX2MiLCJzZXNzaW9uSW5kZXgiOjF9XQ=="
></div>
<footer>
Created and deployed by ©<a
href="https://abuzarportfolio.netlify.app/"
>Abuzar Raziq</a
>
</footer>
<script type="text/javascript">
(function (p, o, s, t, m, a, n) {
!p[s] &&
(p[s] = function () {
(p[t] || (p[t] = [])).push(arguments);
});
!o.getElementById(s + t) &&
o
.getElementsByTagName("head")[0]
.appendChild(
((n = o.createElement("script")),
(n.id = s + t),
(n.async = 1),
(n.src = m),
n),
);
})(
window,
document,
"_pm",
"PostmanRunObject",
"https://run.pstmn.io/button.js",
);
</script>
</div>
</body>
</html>