1
0
Fork 0
mirror of https://github.com/SinTan1729/chhoto-url synced 2024-10-16 13:27:03 -05:00
chhoto-url/src/main/resources/public/index.html

84 lines
2.5 KiB
HTML
Raw Normal View History

2020-02-14 12:52:14 -06:00
<!DOCTYPE html>
<html lang="en">
2022-11-02 03:09:36 -05:00
2020-02-14 12:52:14 -06:00
<head>
<meta charset="UTF-8">
<meta name="viewport"
2022-11-02 03:09:36 -05:00
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
2020-02-14 12:52:14 -06:00
<meta http-equiv="X-UA-Compatible" content="ie=edge">
2020-04-18 15:53:01 -05:00
<title>Simply Shorten</title>
2022-11-09 02:16:12 -06:00
<link rel="icon" type="image/png" href="assets/favicon-32.png" sizes="32x32">
<link rel="shortcut icon" type="image/png" href="assets/favicon-196.png" sizes="196x196">
<link rel="shortcut icon" type="image/x-icon" href="assets/favicon.ico">
2020-02-14 12:52:14 -06:00
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.1/build/pure-min.css"
2022-11-02 03:09:36 -05:00
integrity="sha384-oAOxQR6DkCoMliIh8yFnu25d7Eq/PHS21PClpwjOTeU2jRSq11vu66rf90/cZr47" crossorigin="anonymous">
2020-02-14 12:52:14 -06:00
<script src="js/main.js"></script>
<style>
.container {
max-width: 950px;
margin: 20px auto auto;
}
table {
width: 100%;
}
input {
width: 65%;
}
2022-11-03 15:19:22 -05:00
table tr td div {
max-height: 75px;
line-height: 25px;
word-wrap: break-word;
max-width: 575px;
overflow: auto;
2022-11-03 15:19:22 -05:00
}
2022-11-06 22:36:53 -06:00
form input[name="shortUrl"] {
text-transform: lowercase;
}
2020-02-14 12:52:14 -06:00
</style>
</head>
2022-11-02 03:09:36 -05:00
2020-02-14 12:52:14 -06:00
<body>
2022-11-02 03:09:36 -05:00
<div class="container">
<form class="pure-form pure-form-aligned" name="new-url-form">
<fieldset>
<legend>Add new URL</legend>
<div class="pure-control-group">
<label for="longUrl">Long URL</label>
<input type="url" name="longUrl" id="longUrl" placeholder="Please enter a valid URL" required />
2022-11-02 03:09:36 -05:00
</div>
<div class="pure-control-group">
<label for="shortUrl">Short URL (Optional)</label>
<input type="text" name="shortUrl" id="shortUrl" placeholder="Only a-z, 0-9, - and _ are allowed"
2022-11-06 22:36:53 -06:00
pattern="[A-Za-z0-9_-]+" />
2022-11-02 03:09:36 -05:00
</div>
<div class="pure-controls">
<button class="pure-button pure-button-primary">Submit</button>
</div>
</fieldset>
</form>
<table class="pure-table">
<thead>
<tr>
2022-11-03 16:53:04 -05:00
<td>Short URL</td>
<td>Long URL</td>
2022-11-03 16:53:04 -05:00
<td>Hits</td>
2022-11-02 03:09:36 -05:00
<td></td>
</tr>
</thead>
<tbody id="url-table">
</tbody>
</table>
</div>
2020-02-14 12:52:14 -06:00
</body>
2022-11-02 03:09:36 -05:00
</html>