blob: 29ced4372b06d6ffff6b82ed877005f064b5382a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<% local form, viewlibrary, page_info, session = ... %>
<% require("htmlviewfunctions") %>
<script type="text/javascript" src="<%= html.html_escape(page_info.wwwprefix) %>/js/jquery-latest.js"></script>
<script type="text/javascript">
$(function(){
$("input[name='userid']").focus();
});
</script>
<h1><%= html.html_escape(form.label) %></h1>
<%
form.value.password.type = "password"
form.value.redir.type = "hidden"
local order = { "userid", "password" }
htmlviewfunctions.displayform(form, order)
%>
|