Tweets from pichat
| Two songs from the year I created my first web sites. http://t.co/8eHrOA9K + http://t.co/AuWb2etI #video #retro About 1 day, 1 hour ago from pichat (Mark Seuffert) |
Tweets from 600infos
| I HAVE NYANED FOR 888.4 SECONDS! http://t.co/JQYOZebv via @nyannyancat About 1 week, 5 days ago from 600infos (Wolf) |
Trace: » simple css layout » new_colorscheme_b65 » Overview of Website integrations » Pichat als Service (de) » CMD Function DateTime » Examples to Login using a Form
You are here: Pichat Wiki (en) » Manuals » Overview of Website integrations » Examples to Login using a Form
Table of Contents
Examples to Login using a Form
simple in one line and open in a new Window (Popup)
- pichat_europe_popup.html
<form action="http://eu.pichat.net/chat/connect" method="get" target="eu.pichat.net" onsubmit="window.open('', 'eu.pichat.net', 'width=600,height=400,resizable=yes')"> Name: <input name="nickname" type="text" size="20" maxlength="30" value="Guest"> <input type="hidden" name="startcommands" value="/echo setsilent timestamp"> <input type="hidden" name="useragent" value="pichat-wiki.de"> <input type="hidden" name="colorscheme" value="night"> <input type="hidden" name="chatroom" value="Entrance"> <input type="submit" value=" >>> Chat login <<< "> </form>
in a Tabelle and simple open in a new Tab
- pichat_europe_table.html
<table border="0" cellpadding="0" cellspacing="4"> <form action="http://eu.pichat.net/chat/connect" method="get" target="_blank"> <tr> <td align="right">Name:</td> <td> <input name="nickname" type="text" size="20" maxlength="30" value="Guest"> </td> </tr> <tr> <td> </td> <td align="center"> <input type="hidden" name="startcommands" value="/echo setsilent timestamp"> <input type="hidden" name="useragent" value="pichat-wiki.de"> <input type="hidden" name="colorscheme" value="night"> <input type="hidden" name="chatroom" value="Entrance"> <input type="submit" value=" >>> zum Chat <<< "> </td> </tr> </form> </table>