24 lines
579 B
Text
24 lines
579 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><%= title %></title>
|
|
<link rel="stylesheet" href="/stylesheets/style.css" />
|
|
</head>
|
|
<body>
|
|
<h1><%= title %></h1>
|
|
<br />
|
|
<form method="POST" action="/new">
|
|
<label for="name">Name:</label>
|
|
<br />
|
|
<input type="text" id="name" name="name" />
|
|
<br />
|
|
<br />
|
|
<label for="message">Message:</label>
|
|
<br />
|
|
<textarea id="message" name="message" cols="40" rows="5"></textarea>
|
|
<br />
|
|
<br />
|
|
<input type="submit" value="Submit" />
|
|
</form>
|
|
</body>
|
|
</html>
|