100-Days-Of-Code/Visual Studio Code Projects/html-forms/templates/index.html

17 lines
406 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form action="/login" method="post">
<label>Name</label>
<input type="text" placeholder="name" name="username">
<label>Password</label>
<input type="text" placeholder="password" name="password">
<button type="text">Ok</button>
</form>
</body>
</html>