Switch to tabs for everything. (Note: don't know if this will break the .yml files)
Signed-off-by: Odyssey <odyssey346@disroot.org>
This commit is contained in:
parent
12b07a6441
commit
e32ba6131f
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@ -1,6 +1,6 @@
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "gomod" # See documentation for possible values
|
||||
directory: "/" # Location of package manifests
|
||||
schedule:
|
||||
interval: "daily"
|
||||
directory: "/" # Location of package manifests
|
||||
schedule:
|
||||
interval: "daily"
|
48
.github/workflows/docker.yml
vendored
48
.github/workflows/docker.yml
vendored
@ -1,29 +1,29 @@
|
||||
name: Docker
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
|
||||
jobs:
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
push: true
|
||||
tags: realprojectsegfault/segfautils:latest
|
||||
docker:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
-
|
||||
name: Login to DockerHub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
-
|
||||
name: Build and push
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
push: true
|
||||
tags: realprojectsegfault/segfautils:latest
|
||||
|
@ -1,185 +1,162 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<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">
|
||||
<title>Segfautils announcement command centre</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #252525;
|
||||
color: #fff;
|
||||
font-family: 'JetBrains Mono', 'JetBrainsMono Nerd Font', monospace
|
||||
}
|
||||
.container {
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#contact input[type="token"],
|
||||
#contact input[type="link"],
|
||||
#contact textarea,
|
||||
#contact select,
|
||||
#contact button[type="submit"] {
|
||||
font: 500 15px/16px "Roboto", sans-serif;
|
||||
}
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Segfautils announcement command centre</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #252525;
|
||||
color: #fff;
|
||||
font-family: 'JetBrains Mono', 'JetBrainsMono Nerd Font', monospace
|
||||
}
|
||||
|
||||
.container h1 {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 2rem;
|
||||
}
|
||||
.container {
|
||||
width: 100%;
|
||||
max-width: 400px;
|
||||
margin: 0 auto;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#contact input[type="token"],
|
||||
#contact input[type="link"],
|
||||
#contact textarea,
|
||||
#contact select,
|
||||
#contact button[type="submit"] {
|
||||
font: 500 15px/16px "Roboto", sans-serif;
|
||||
}
|
||||
|
||||
.container h1 {
|
||||
text-align: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
|
||||
#contact textarea {
|
||||
text-align: center;
|
||||
border-radius: 5px;
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
border: none;
|
||||
color: #FFF;
|
||||
background: #3b3b3b;
|
||||
margin: 0 0 5px;
|
||||
padding: 10px;
|
||||
height: 100px;
|
||||
max-width: 100%;
|
||||
resize: none;
|
||||
}
|
||||
#contact textarea {
|
||||
text-align: center;
|
||||
border-radius: 5px;
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
border: none;
|
||||
color: #FFF;
|
||||
background: #3b3b3b;
|
||||
margin: 0 0 5px;
|
||||
padding: 10px;
|
||||
height: 100px;
|
||||
max-width: 100%;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
#contact input, select {
|
||||
text-align: center;
|
||||
border-radius: 5px;
|
||||
color: #FFF;
|
||||
width: 100%;
|
||||
border: none;
|
||||
background: #3b3b3b;
|
||||
margin: 0 0 5px;
|
||||
padding: 10px;
|
||||
max-width: 100%;
|
||||
}
|
||||
#contact select {
|
||||
width: 105%;
|
||||
max-width: 105%;
|
||||
}
|
||||
#contact input,
|
||||
select {
|
||||
text-align: center;
|
||||
border-radius: 5px;
|
||||
color: #FFF;
|
||||
width: 100%;
|
||||
border: none;
|
||||
background: #3b3b3b;
|
||||
margin: 0 0 5px;
|
||||
padding: 10px;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
#contact select {
|
||||
width: 105%;
|
||||
max-width: 105%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#contact button[type="submit"] {
|
||||
cursor: pointer;
|
||||
width: 105%;
|
||||
border: none;
|
||||
background: #00d4aa;
|
||||
color: #252525;
|
||||
margin: 0 0 5px;
|
||||
padding: 10px;
|
||||
font-size: 15px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
#contact button[type="submit"] {
|
||||
cursor: pointer;
|
||||
width: 105%;
|
||||
border: none;
|
||||
background: #00d4aa;
|
||||
color: #252525;
|
||||
margin: 0 0 5px;
|
||||
padding: 10px;
|
||||
font-size: 15px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#contact button[type="submit"]:hover {
|
||||
background: #00a484;
|
||||
-webkit-transition: background 0.3s ease-in-out;
|
||||
-moz-transition: background 0.3s ease-in-out;
|
||||
transition: background-color 0.3s ease-in-out;
|
||||
}
|
||||
#contact button[type="submit"]:hover {
|
||||
background: #00a484;
|
||||
-webkit-transition: background 0.3s ease-in-out;
|
||||
-moz-transition: background 0.3s ease-in-out;
|
||||
transition: background-color 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
#contact button[type="submit"]:active {
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
#contact button[type="submit"]:active {
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
#contact button[type="delete"] {
|
||||
cursor: pointer;
|
||||
width: 105%;
|
||||
border: none;
|
||||
background: #d10006;
|
||||
color: #FFF;
|
||||
margin: 0 0 5px;
|
||||
padding: 10px;
|
||||
font-size: 15px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
#contact button[type="delete"] {
|
||||
cursor: pointer;
|
||||
width: 105%;
|
||||
border: none;
|
||||
background: #d10006;
|
||||
color: #FFF;
|
||||
margin: 0 0 5px;
|
||||
padding: 10px;
|
||||
font-size: 15px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
#contact button[type="delete"]:hover {
|
||||
background: #990005;
|
||||
-webkit-transition: background 0.3s ease-in-out;
|
||||
-moz-transition: background 0.3s ease-in-out;
|
||||
transition: background-color 0.3s ease-in-out;
|
||||
}
|
||||
#contact button[type="delete"]:hover {
|
||||
background: #990005;
|
||||
-webkit-transition: background 0.3s ease-in-out;
|
||||
-moz-transition: background 0.3s ease-in-out;
|
||||
transition: background-color 0.3s ease-in-out;
|
||||
}
|
||||
|
||||
#contact button[type="delete"]:active {
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
#contact button[type="delete"]:active {
|
||||
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
a {
|
||||
color: #00d4aa;
|
||||
}
|
||||
a {
|
||||
color: #00d4aa;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #4beacb;
|
||||
}
|
||||
</style>
|
||||
a:hover {
|
||||
color: #4beacb;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>Post Announcement</h1>
|
||||
<form
|
||||
id="contact"
|
||||
action="/api/announcements/post"
|
||||
method="POST"
|
||||
target="_blank"
|
||||
>
|
||||
<div class="meta">
|
||||
<input
|
||||
type="password"
|
||||
name="token"
|
||||
placeholder="Your authentication token"
|
||||
required
|
||||
/>
|
||||
<br />
|
||||
<select id="severity" name="severity" required>
|
||||
<option value="" selected disabled>Select severity of announcement</option>
|
||||
<option value="info">Information announcement</option>
|
||||
<option value="low">Low severity</option>
|
||||
<option value="medium">Medium severity</option>
|
||||
<option value="high">High severity</option>
|
||||
</select>
|
||||
</div>
|
||||
<textarea
|
||||
name="title"
|
||||
rows="4"
|
||||
cols="25"
|
||||
required
|
||||
placeholder="The announcement text"></textarea>
|
||||
<br />
|
||||
<input
|
||||
type="text"
|
||||
name="link"
|
||||
placeholder="Your link for more details"
|
||||
/>
|
||||
<br />
|
||||
<button type="submit" />Submit</button>
|
||||
</form>
|
||||
<h1 style="margin-top: 20px;">Delete Announcement</h1>
|
||||
<form
|
||||
id="contact"
|
||||
action="/api/announcements/delete"
|
||||
method="POST"
|
||||
target="_blank"
|
||||
>
|
||||
<div class="meta">
|
||||
<input
|
||||
type="password"
|
||||
name="token"
|
||||
placeholder="Your authentication token"
|
||||
required
|
||||
/>
|
||||
<br />
|
||||
</div>
|
||||
<button type="delete"/>Delete</button>
|
||||
</form>
|
||||
</div>
|
||||
<div class="container">
|
||||
<h1>Post Announcement</h1>
|
||||
<form id="contact" action="/api/announcements/post" method="POST" target="_blank">
|
||||
<div class="meta">
|
||||
<input type="password" name="token" placeholder="Your authentication token" required />
|
||||
<br />
|
||||
<select id="severity" name="severity" required>
|
||||
<option value="" selected disabled>Select severity of announcement</option>
|
||||
<option value="info">Information announcement</option>
|
||||
<option value="low">Low severity</option>
|
||||
<option value="medium">Medium severity</option>
|
||||
<option value="high">High severity</option>
|
||||
</select>
|
||||
</div>
|
||||
<textarea name="title" rows="4" cols="25" required placeholder="The announcement text"></textarea>
|
||||
<br />
|
||||
<input type="text" name="link" placeholder="Your link for more details" />
|
||||
<br />
|
||||
<button type="submit" />Submit</button>
|
||||
</form>
|
||||
<h1 style="margin-top: 20px;">Delete Announcement</h1>
|
||||
<form id="contact" action="/api/announcements/delete" method="POST" target="_blank">
|
||||
<div class="meta">
|
||||
<input type="password" name="token" placeholder="Your authentication token" required />
|
||||
<br />
|
||||
</div>
|
||||
<button type="delete" />Delete</button>
|
||||
</form>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
</html>
|
@ -1,5 +1,6 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
@ -22,18 +23,11 @@
|
||||
</style>
|
||||
<script src="https://js.hcaptcha.com/1/api.js" async defer></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<form
|
||||
action="/api/form"
|
||||
method="POST"
|
||||
>
|
||||
<form action="/api/form" method="POST">
|
||||
<div class="meta">
|
||||
<input
|
||||
type="text"
|
||||
name="email"
|
||||
placeholder="Your email"
|
||||
required
|
||||
/>
|
||||
<input type="text" name="email" placeholder="Your email" required />
|
||||
<select id="commentType" name="commentType" required>
|
||||
<option value="" selected disabled>Select a type of comment</option>
|
||||
<option value="Feedback">Feedback</option>
|
||||
@ -42,16 +36,10 @@
|
||||
<option value="Bug">Bug</option>
|
||||
</select>
|
||||
</div>
|
||||
<textarea
|
||||
id="comment"
|
||||
name="message"
|
||||
rows="4"
|
||||
cols="25"
|
||||
required
|
||||
placeholder="Your message"
|
||||
></textarea>
|
||||
<textarea id="comment" name="message" rows="4" cols="25" required placeholder="Your message"></textarea>
|
||||
<div class="h-captcha" data-sitekey="{{.HCaptchaSiteKey}}"></div>
|
||||
<input type="submit" value="Submit" />
|
||||
</form>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,4 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
@ -20,8 +21,10 @@
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Welcome to Segfautils</h1>
|
||||
<h3>Running at port {{.Port}} | <a href="https://github.com/ProjectSegfault/segfautils/" target="_blank">GitHub</a></h3>
|
||||
<h3><a href="/form">Click here for an example form implementation</a></h3>
|
||||
<h1>Welcome to Segfautils</h1>
|
||||
<h3>Running at port {{.Port}} | <a href="https://github.com/ProjectSegfault/segfautils/" target="_blank">GitHub</a>
|
||||
</h3>
|
||||
<h3><a href="/form">Click here for an example form implementation</a></h3>
|
||||
</body>
|
Reference in New Issue
Block a user