forked from mirror/Riven
1
0
Fork 0
Riven/riven/srcgen/node_modules/dot/examples/express/templates/login.jst

35 lines
778 B
Plaintext
Raw Normal View History

<html>
<body>
<div>Signin</div>
<form action="/login" method="post">
<div>
<label>Username:</label>
<input type="text" name="username" />
<br/>
</div>
<div>
<label>Password:</label>
<input type="password" name="password" />
</div>
<div>
<input type="submit" value="Sign in" />
</div>
</form>
<div>Signup</div>
<form action="/signup" method="post">
<div>
<label>Username:</label>
<input type="text" name="username" />
<br/>
</div>
<div>
<label>Password:</label>
<input type="password" name="password" />
</div>
<div>
<input type="submit" value="Sign up" />
</div>
</form>
</body>
</html>