Jump to content

shimamoto

Members
  • Posts

    2
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://www.techphilly.com

shimamoto's Achievements

Newbie

Newbie (1/14)

  • First Post
  • Conversation Starter
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

  1. I'd like to use GPG to encrypt form submissions sent from my website to me via email. I know TCH has a GPG feature, but will it work for this? And I need a cgi script to process the form, right? Do I have to have an SSL certificate? If someone could just describe what steps I need to take to get this working I would really appreciate it. Thanks.
  2. I've been able to use the horde javascript on my site to work for my webmail login, but when I tried to change the button to an image file I can't seem to get it to work. Can someone show me how to get this to work correctly? Thanks. ><script language="javascript"> function Login(form) { var username = form.username.value var password = form.password.value var server = form.server.value if (username && password && server) { var horde = "https://" + username +"+"+server+ ":" + password + "@" + server + ":2096/" + "horde/index.php" window.status='WebMail' window.location = horde } else { alert("Please fill the username and the password") } } </script> <form name=login><input type="hidden" value="techphilly.com" name="server" maxlength="30" size="15"><br> login: <input type=text name=username size=9 maxlength="30"><br> password: <input type=password name=password size=9 maxlength="30"> <input type="image" src="images/go.jpg" border="0" width="21" height="21" onClick="Login(this.form)" name="button"> </form> I have this on my site at: http://www.techphilly.com/new/login.html
×
×
  • Create New...