Skip to content
Snippets Groups Projects
404.html 693 B
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <title>404</title>
  </head>
  <body>
    <h1>404</h1>
    <p>Hi from Rust</p>
    <form action="/post/post" method="post" enctype="multipart/form-data">
      <label for="message">Enter your message:</label>
      <input type="text" id="message" name="message" />
      <button type="submit">Send</button>
    </form>
    <form action="/static/hi" method="get">
      <label for="jump">Enter asdf</label>
      <input type="text" id="jump" name="asdf" />
      <label for="jkl">Enter jkl;</label>
      <input type="text" id="jkl" name="jkl" />
      <button type="submit">Send</button>
    </form>
  </body>
</html>