all repos — caroster @ f23ba3d49ddd49492d4bb06c4a345acf3ec0235c

[Octree] Group carpool to your event https://caroster.io

e2e/src/html/login.html (view raw)

 1<!DOCTYPE html>
 2<html lang="en">
 3  <head>
 4    <meta charset="utf-8" />
 5    <title>Login</title>
 6    <meta name="viewport" content="width=device-width,initial-scale=1" />
 7    <link rel="stylesheet" href="/style.css" />
 8  </head>
 9  <body>
10    <form action="/login" method="POST" enctype="multipart/form-data">
11      <p>
12        <label for="email">Email</label>
13        <input type="email" name="email" id="email" required />
14      </p>
15      <p>
16        <label for="password">Password</label>
17        <input type="password" name="password" id="password" required />
18      </p>
19      <p><button type="submit" id="submit">Login</button></p>
20    </form>
21  </body>
22</html>