Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 20 lines (19 sloc) 577 Bytes
<html>
<head>
<title>Login</title>
</head>
<body>
<% if logged then %>
<p>User <%= username %> logged in</p>
<a href="<%= logoutURL %>">Logout</a>
<% else %>
<p style="color:#ff0000"><%= errorMsg %> </p>
<form method="post" action="" >
User name: <input name="username" maxlength="20" size="20" value="<%= username %>" ><br />
Password: <input name="pass" type="password" maxlength="20" size="20"><br />
<input type="submit" value="Login" />
<input type="reset" value="Reset" />
</form>
<% end %>
</body>
</html>