diff options
author | Steven Barth <steven@midlink.org> | 2008-03-28 22:55:27 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-03-28 22:55:27 +0000 |
commit | bd32a8aac5de9beb321b3cdfe180a8798c5a3379 (patch) | |
tree | a0b5e2926066e23c7356122a8afeb0ed0ef0e505 /src/ffluci/view/admin_system | |
parent | fb2a9a328d619ecf329e64cb500ff1385e3f8290 (diff) |
* CBI: improvements, bug fixes
* admin: Introduced wifi, olsr, password pages
Diffstat (limited to 'src/ffluci/view/admin_system')
-rw-r--r-- | src/ffluci/view/admin_system/index.htm | 2 | ||||
-rw-r--r-- | src/ffluci/view/admin_system/passwd.htm | 15 |
2 files changed, 17 insertions, 0 deletions
diff --git a/src/ffluci/view/admin_system/index.htm b/src/ffluci/view/admin_system/index.htm new file mode 100644 index 0000000000..75aa026582 --- /dev/null +++ b/src/ffluci/view/admin_system/index.htm @@ -0,0 +1,2 @@ +<%+header%> +<%+footer%>
\ No newline at end of file diff --git a/src/ffluci/view/admin_system/passwd.htm b/src/ffluci/view/admin_system/passwd.htm new file mode 100644 index 0000000000..3458fef924 --- /dev/null +++ b/src/ffluci/view/admin_system/passwd.htm @@ -0,0 +1,15 @@ +<%+header%> +<h1><%:system System%></h1> +<h2><%:changepw Passwort ändern%></h2> +<div><br /> +<% if msg then %> + <code><%=msg%></code> +<% else %> + <form method="post" action="<%=controller%>/admin/system/passwd"> + <input type="password" name="pwd1" /> <%:password Passwort%><br /> + <input type="password" name="pwd2" /> <%:confirmation Bestätigung%><br /> + <input type="submit" value="<%:save Speichern%>" /> + </form> +<% end %> +</div> +<%+footer%>
\ No newline at end of file |