2022-01-14 07:02:31 +00:00
|
|
|
<!DOCTYPE html>
|
2022-07-26 03:59:58 +00:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
|
|
|
<title>shorten - char.lt</title>
|
|
|
|
|
2023-07-02 16:05:02 +00:00
|
|
|
<link rel="stylesheet" href="/css/shortlinks-layout.css" />
|
|
|
|
<link rel="stylesheet" href="/css/aesthetic.css" />
|
2022-07-26 03:59:58 +00:00
|
|
|
|
|
|
|
<link rel="stylesheet" href="/inter/inter.css" />
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="page-wrapper">
|
|
|
|
<main>
|
2023-07-02 16:05:02 +00:00
|
|
|
<h1>Redirects</h1>
|
|
|
|
|
2022-07-26 03:59:58 +00:00
|
|
|
<p>this is where you can manage the redirects for the site.</p>
|
2023-07-02 16:05:02 +00:00
|
|
|
<noscript>if you have javascript turned on.</noscript>
|
2022-07-26 03:59:58 +00:00
|
|
|
|
2023-07-02 16:05:02 +00:00
|
|
|
<section id="status-message">Loading...</section>
|
2022-07-26 03:59:58 +00:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
|
2023-07-02 16:05:02 +00:00
|
|
|
<template id="redirect-table">
|
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Path</th>
|
|
|
|
<th>URL</th>
|
|
|
|
<th>Code</th>
|
|
|
|
<th>Manage</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody></tbody>
|
|
|
|
</table>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template id="redirect-form">
|
|
|
|
<form>
|
|
|
|
<h2>Create or Replace</h2>
|
|
|
|
|
|
|
|
<label for="path">Local Path (random if empty)</label>
|
|
|
|
<input type="text" name="path" id="path" placeholder="my-cool-link" />
|
|
|
|
|
|
|
|
<label for="url">Target URL</label>
|
|
|
|
<input
|
|
|
|
type="url"
|
|
|
|
name="url"
|
|
|
|
id="url"
|
|
|
|
placeholder="https://…"
|
|
|
|
required
|
|
|
|
/>
|
|
|
|
|
|
|
|
<button>Create</button>
|
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<template id="redirect-row">
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{path}"><pre>{path}</pre></a>
|
|
|
|
</td>
|
|
|
|
<td class="clipped"><a href="{location}">{location}</a></td>
|
|
|
|
<td>{code}</td>
|
|
|
|
<td><button class="danger">Delete</button></td>
|
|
|
|
</tr>
|
|
|
|
</template>
|
|
|
|
|
2022-07-26 03:59:58 +00:00
|
|
|
<script type="module" src="/js/shorten.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|