87 lines
4.4 KiB
Perl
Executable File
87 lines
4.4 KiB
Perl
Executable File
#!/usr/bin/perl
|
|
# tta_addhostsuser.cgi
|
|
# Add Users to Tarantella Services
|
|
|
|
require './tarantella-lib.pl';
|
|
&header($text{'index_addhostsuser'}, "", "addhostsuser" );
|
|
print "<hr><p>\n";
|
|
print "<SCRIPT SRC=\"global.js\">\n";
|
|
print "</SCRIPT>\n";
|
|
print "<SCRIPT LANGUAGE=\"JavaScript\">\n";
|
|
print "<!--\n";
|
|
print "/* Strings for locales */\n";
|
|
print "var msg0=\"".$text{'msg_0'},"\";\n";
|
|
print "var msg1=\"".$text{'msg_1'},"\";\n";
|
|
print "var msg2=\"".$text{'msg_2'},"\";\n";
|
|
print "var msg3=\"".$text{'msg_3'},"\";\n";
|
|
print "var msg4=\"".$text{'msg_4'},"\";\n";
|
|
print "var msg5=\"".$text{'msg_5'},"\";\n";
|
|
print "var msg6=\"".$text{'msg_6'},"\";\n";
|
|
print "var msg7=\"".$text{'msg_7'},"\";\n";
|
|
print "var ask_confpasscache=true;\n";
|
|
print "/******************************************************************\n";
|
|
print " setPasswdDefault(formObj)\n";
|
|
print " If password is empty assign username as default value in the form.\n";
|
|
print "*******************************************************************/\n";
|
|
print "function setPasswdDefault(formObj) {\n";
|
|
print " if (emptyField(formObj.username)) {\n";
|
|
print " formObj.username.value=\"\";\n";
|
|
print " formObj.password.value=\"\";\n";
|
|
print " return\n";
|
|
print " } \n";
|
|
print " username=StringClip(true,formObj.username.value);\n";
|
|
print " formObj.username.value=username;\n";
|
|
print " if (emptyField(formObj.password)) {\n";
|
|
print " formObj.password.value=username;\n";
|
|
print " setStatusBar(msg0);\n";
|
|
print " }\n";
|
|
print "}\n";
|
|
print "/******************************************************************\n";
|
|
print " showPasswd(formObj)\n";
|
|
print " Show Password value from form.\n";
|
|
print "*******************************************************************/\n";
|
|
print "function showPasswd(formObj) {\n";
|
|
print " alert(\"Password es:\"+formObj.password.value+\"\");\n";
|
|
print "}\n";
|
|
print "/******************************************************************\n";
|
|
print " Chek_fields(obj)\n";
|
|
print "*******************************************************************/\n";
|
|
print "function Chek_fields(obj) {\n";
|
|
print " if ( emptyField(obj.username) == true ) {\n";
|
|
print " alert(obj.username.name+\":\"+msg1+\"->\"+obj.username.value+\"<-\");\n";
|
|
print " obj.username.focus();\n";
|
|
print " return false;\n";
|
|
print " } \n";
|
|
print " if ( emptyField(obj.password) == true ) {\n";
|
|
print " alert(obj.password.name+\":\"+msg1+\"->\"+obj.password.value+\"<-\");\n";
|
|
print " obj.password.focus();\n";
|
|
print " return false;\n";
|
|
print " } \n";
|
|
print " return true;\n";
|
|
print "}\n";
|
|
print "//-->\n";
|
|
print "</SCRIPT>\n";
|
|
print "<table width=100% border>\n";
|
|
print "<tr $tb> <td><b>$text{'titidx_adhostsuser'}</b></td> </tr>\n";
|
|
print "<tr $cb> <td><table width=100%>\n";
|
|
print "<form METHOD=POST name=newHostUser ACTION=\"addhostsuser.cgi\" onSubmit=\"return Chek_fields(this)\">\n";
|
|
print " <tr><td valign=top>",&hlink("<b>$text{'f_username'}</b>","fusername")," ";
|
|
print " <td valign=top><input TYPE=\"text\" NAME=\"username\" VALUE=\"\" cols=\"22\" size=\"12\" ALIGN=left\n";
|
|
print " onChange=\"setPasswdDefault(newHostUser)\" onFocus=\"setPasswdDefault(newHostUser)\"</td></tr>\n";
|
|
print " <tr><td valign=top>",&hlink("<b>$text{'f_descrip'}</b>","fdescrip"),"\n";
|
|
print " <td valign=top><input TYPE=\"text\" NAME=\"descrip\" VALUE=\"$descrip\" cols=\"40\" size=\"40\" ALIGN=left></td></tr>\n";
|
|
print " <tr><td valign=top>",&hlink("<b>$text{'f_password'}</b>","fpassword"),"\n";
|
|
print " <td valign=top><input TYPE=\"button\" NAME=\"?\" VALUE=\"?\" onClick=\"showPasswd(newHostUser);\" >\n";
|
|
print " <input TYPE=\"password\" NAME=\"password\" VALUE=\"\" cols=\"22\" size=\"12\" ALIGN=left\n";
|
|
print " onChange=\"setPasswdDefault(newHostUser)\" onFocus=\"setPasswdDefault(newHostUser)\"></td></tr>\n";
|
|
|
|
print " <tr><td valign=top><input TYPE=\"submit\" NAME=\"",$text{'f_sendreq'},"\" VALUE=\"",$text{'f_sendreq'},"\">\n";
|
|
print " \n";
|
|
print " <td valign=top><input TYPE=\"reset\" NAME=\"",$text{'f_cancelreq'},"\" VALUE=\"",$text{'f_cancelreq'},"\"></td></tr>\n";
|
|
print " </form></td></tr>\n";
|
|
print "<tr><tr></table></table><hr><p>\n";
|
|
&footer($config{'back_return'},$text{'index'});
|
|
print "<p><p><p>\n";
|
|
do "footer.pl";
|
|
exit;
|