Skip to content

Commit

Permalink
examples: fixup html
Browse files Browse the repository at this point in the history
closes #4866
  • Loading branch information
Hashen110 authored and dougwilson committed Mar 20, 2022
1 parent 490f1a1 commit 2a7417d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/route-separation/views/users/edit.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h1>Editing <%= user.name %></h1>

<div id="user">
<form action="?_method=put", method="post">
<form action="?_method=put" method="post">
<p>
Name:
<input type="text" value="<%= user.name %>" name="user[name]" />
Expand Down
4 changes: 2 additions & 2 deletions examples/search/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Search example</title>
<style type="text/css">
<style>
body {
font: 14px "Helvetica Neue", Helvetica;
padding: 50px;
Expand All @@ -15,7 +15,7 @@
<h2>Search</h2>
<p>Try searching for "ferret" or "cat".</p>
<input type="search" name="search" value="" />
<pre />
<pre></pre>
<script src="/client.js" charset="utf-8"></script>
</body>
</html>

0 comments on commit 2a7417d

Please sign in to comment.