Fix grammar

This commit is contained in:
SinTan1729 2022-11-02 08:09:36 +00:00
parent d26466b84c
commit 58e956b2ef

View File

@ -1,14 +1,15 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" <meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge"> <meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Simply Shorten</title> <title>Simply Shorten</title>
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.1/build/pure-min.css" <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.1/build/pure-min.css"
integrity="sha384-oAOxQR6DkCoMliIh8yFnu25d7Eq/PHS21PClpwjOTeU2jRSq11vu66rf90/cZr47" crossorigin="anonymous"> integrity="sha384-oAOxQR6DkCoMliIh8yFnu25d7Eq/PHS21PClpwjOTeU2jRSq11vu66rf90/cZr47" crossorigin="anonymous">
<script src="js/main.js"></script> <script src="js/main.js"></script>
<style> <style>
@ -22,42 +23,44 @@
} }
</style> </style>
</head> </head>
<body> <body>
<div class="container"> <div class="container">
<form class="pure-form pure-form-aligned" name="new-url-form"> <form class="pure-form pure-form-aligned" name="new-url-form">
<fieldset> <fieldset>
<legend>Add new URL</legend> <legend>Add new URL</legend>
<div class="pure-control-group"> <div class="pure-control-group">
<label for="longUrl">Long URL</label> <label for="longUrl">Long URL</label>
<input type="url" name="longUrl" id="longUrl" placeholder="Long URL" required/> <input type="url" name="longUrl" id="longUrl" placeholder="Long URL" required />
</div> </div>
<div class="pure-control-group"> <div class="pure-control-group">
<label for="shortUrl">Short URL (Optional). Only letters, number dashes and underscores <label for="shortUrl">Short URL (Optional). Only letters, numbers, dashes and underscores
permitted</label> permitted</label>
<input type="text" name="shortUrl" id="shortUrl" placeholder="Short URL (optional)" <input type="text" name="shortUrl" id="shortUrl" placeholder="Short URL (optional)"
pattern="[a-z0-9_-]+"/> pattern="[a-z0-9_-]+" />
</div> </div>
<div class="pure-controls"> <div class="pure-controls">
<button class="pure-button pure-button-primary">Submit</button> <button class="pure-button pure-button-primary">Submit</button>
</div> </div>
</fieldset> </fieldset>
</form> </form>
<table class="pure-table"> <table class="pure-table">
<thead> <thead>
<tr> <tr>
<td>Long URL</td> <td>Long URL</td>
<td>Short url</td> <td>Short url</td>
<td></td> <td></td>
</tr> </tr>
</thead> </thead>
<tbody id="url-table"> <tbody id="url-table">
</tbody> </tbody>
</table> </table>
</div> </div>
</body> </body>
</html> </html>