Author: Pedro Lucas Porcellis <porcellis@eletrotupi.com>
templates: very basic template
templates/index.html | 40 ++++++++++++++++++++++++++++++++++++++++
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000000000000000000000000000000000000..6fd2f07f1f1800ba6695b1eb1c5f6c56f3012d20 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,40 @@ +<!doctype html> +<html> + <head> + <meta charset="utf-8" /> + <title>Dinheiro</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="stylesheet" href="/public/app.css" /> + </head> + + <body> + <h1>Hello!</h1> + + <div> + <form method="POST" action="/auth"> + <div> + <label for="email"> + E-mail + </label> + + <input type="email" name="email" /> + </div> + + <div> + <label for="password"> + Password + </label> + + <input type="password" name="password" /> + </div> + + <div class="action"> + <button type="submit"> + Enviar + </button> + </div> + </form> + + </div> + </body> +</html>