urlshortener/views/index.html
Randell Dawson 4a78313444
fix: update title
Co-authored-by: Shaun Hamilton <51722130+Sky020@users.noreply.github.com>
2020-10-13 15:53:13 -07:00

33 lines
903 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>URL Shortener Microservice | freeCodeCamp.org</title>
<link
rel="icon"
type="image/png"
href="https://cdn.freecodecamp.org/universal/favicons/favicon-16x16.png"
/>
<link href="/public/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1>URL Shortener Microservice</h1>
<main>
<section>
<form action="api/shorturl/new" method="POST">
<fieldset>
<legend>URL Shortener</legend>
<label for="url_input">URL:</label>
<input id="url_input" type="text" name="url" placeholder="https://www.freecodecamp.org/" />
<input type="submit" value="POST URL" />
</fieldset>
</form>
</section>
</main>
<footer>
<p>By <a href="https://www.freecodecamp.org/">freeCodeCamp</a></p>
</footer>
</body>
</html>