summaryrefslogtreecommitdiffstats
path: root/app/acf-util/logon-html.lsp
blob: 2400c904e478e331274bd3c5620ae2cfc54f6858 (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("viewfunctions") %>

<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" }
	displayform(form, order)
%>