mirror of
https://github.com/zebrajr/express.git
synced 2025-12-06 12:19:51 +01:00
16 lines
357 B
Plaintext
16 lines
357 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<title>Edit <%= pet.name %></title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1><%= pet.name %></h1>
|
|
<form action="/pet/<%= pet.id %>?_method=put" method="post">
|
|
<label>Name: <input type="text" name="pet[name]" value="<%= pet.name %>"></label>
|
|
<input type="submit" value="Update">
|
|
</form>
|
|
</body>
|
|
</html>
|