gitgud / templates /form.html
stepenZEN's picture
cREATE templates/form.html
a21c352 verified
raw
history blame
289 Bytes
<!DOCTYPE html>
<html>
<head>
<title>Simple Form</title>
</head>
<body>
<form method="post">
<label for="giturl">Enter git url:</label>
<input type="text" name="giturl" id="giturl" required>
<button type="submit">Submit</button>
</form>
</body>
</html>