vedia/views/signup.erb
2025-04-06 17:05:07 -06:00

13 lines
354 B
Text

<h1><%= _("Create account") %></h1>
<form action="/signup" method="post">
<p>
<label for="email"><%= _("Email") %></label>
<input type="text" name="email">
</p>
<p>
<label for="password"><%= _("Password") %></label>
<input type="password" name="password">
</p>
<button type="submit"><%= _("Create account") %></button>
</form>