comparison src/login.html.luan @ 55:c57b84f461ae

login and registration work
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 28 Nov 2022 20:33:47 -0700
parents 260abd8f8565
children
comparison
equal deleted inserted replaced
54:260abd8f8565 55:c57b84f461ae
75 <label>Email address</label> 75 <label>Email address</label>
76 <input type="email" name="email" value="<%= email or "" %>" autofocus required> 76 <input type="email" name="email" value="<%= email or "" %>" autofocus required>
77 </p> 77 </p>
78 <p> 78 <p>
79 <label>Password</label> 79 <label>Password</label>
80 <input type="password" name="password" value="<%= password or "" %>"> 80 <input type="password" name="password" value="<%= password or "" %>" required>
81 <label clickable><input type=checkbox onclick="show(this)">Show</label> 81 <label clickable><input type=checkbox onclick="show(this)">Show</label>
82 </p> 82 </p>
83 <p><input type="submit" value="Login"></p> 83 <p><input type="submit" value="Login"></p>
84 </form> 84 </form>
85 <p><a href="/register.html">Get or change password</a></p>
85 <% 86 <%
86 end) 87 end)
87 end 88 end