send_im.html 393 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <html>
  2. <!-- $Id$ -->
  3. <header>
  4. <title>
  5. Send IM
  6. </title>
  7. </header>
  8. <body>
  9. <h1>
  10. Send IM
  11. </h1>
  12. <form method=POST action=send_im.php>
  13. <table>
  14. <tr>
  15. <td>
  16. SIP Address
  17. <br>
  18. Example: sip:[email protected]
  19. <td>
  20. <input name=sip_address>
  21. <tr>
  22. <td>
  23. Message
  24. <td>
  25. <textarea name=instant_message rows=6 cols=40>
  26. </textarea>
  27. <tr>
  28. <td>Click to send
  29. <td>
  30. <input type=submit value=submit>
  31. </table>
  32. </form>
  33. </body>