From 1bf7a917b2d2ba2806e018ca385e44557c7dbf56 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 30 May 2005 08:23:37 +0000 Subject: r7094: use the Form() object in a few more places (This used to be commit 9b8546f92179dba826e7ca5ed009b24486ef7a2c) --- swat/esptest/session.esp | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'swat/esptest/session.esp') diff --git a/swat/esptest/session.esp b/swat/esptest/session.esp index ec747df442..6de7edab67 100644 --- a/swat/esptest/session.esp +++ b/swat/esptest/session.esp @@ -2,17 +2,18 @@

Samba4 session test

-
- Name:
- Value:
- Timeout:
- - - -
-
- <% +var f = Form("SessionTest", 3, 4); +f.element[0].label = "Name"; +f.element[1].label = "Value"; +f.element[2].label = "Timeout"; +f.submit[0] = "Append"; +f.submit[1] = "Reset"; +f.submit[2] = "Destroy"; +f.submit[3] = "Cancel"; + +display_form(f); + /* if its a post then the user has filled in the form, so report the values */ -- cgit