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

Add logo in interface

This commit is contained in:
Sayantan Santra 2022-11-09 17:46:54 -06:00
parent 47c47e91dd
commit 77f835430b

View file

@ -48,18 +48,19 @@
<div class="container">
<form class="pure-form pure-form-aligned" name="new-url-form">
<fieldset>
<legend>Add new URL</legend>
<legend style="font-size: 32px;"><img src="assets/favicon-32.png" height="26px" alt="logo"> Simply
Shorten</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 />
</div>
<div class="pure-control-group">
<label for="shortUrl">Short URL (Optional)</label>
<label for="shortUrl">Short URL (optional)</label>
<input type="text" name="shortUrl" id="shortUrl" placeholder="Only a-z, 0-9, - and _ are allowed"
pattern="[A-Za-z0-9_-]+" />
</div>
<div class="pure-controls">
<button class="pure-button pure-button-primary">Submit</button>
<button class="pure-button pure-button-primary">Add URL</button>
</div>
</fieldset>
</form>