Annotation of FreeBSD/tinderbox/webui/templates/default/user_admin.tpl, revision 1.1
1.1 ! as 1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
! 2: <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
! 3: <head>
! 4: <!-- $MCom: portstools/tinderbox/webui/templates/default/user_admin.tpl,v 1.6 2007/06/17 00:05:47 ade Exp $ //-->
! 5: <title><?=$tinderbox_name?></title>
! 6: <link href="<?=$templatesuri?>/tinderstyle.css" rel="stylesheet" type="text/css" />
! 7: </head>
! 8: <body>
! 9: <h1><?=$tinderbox_title?> - User Administration</h1>
! 10:
! 11: <?if($errors){?>
! 12: <p style="color:#FF0000">
! 13: <?foreach($errors as $error){?>
! 14: <?=$error?><br />
! 15: <?}?>
! 16: </p>
! 17: <?}?>
! 18:
! 19: <form method="post" action="index.php">
! 20: <?=$user_properties?>
! 21: <p><br /></p>
! 22: <?=$user_permissions?>
! 23: <p>
! 24: <?if($add==true){?>
! 25: <input type="hidden" name="action" value="add_user" />
! 26: <input type="submit" name="action_user" value="add" />
! 27: <?}elseif($modify==true){?>
! 28: <input type="hidden" name="action" value="modify_user" />
! 29: <input type="submit" name="action_user" value="modify" />
! 30: <input type="submit" name="action_user" value="delete" />
! 31: <?}?>
! 32: </p>
! 33: </form>
! 34: <p><a href="index.php">Back to homepage</a></p>
! 35: <?=$display_login?>
! 36: </body>
! 37: </html>