Templates html or java for download

Templates html or java for download SearchSearch
Author Message
tailer teilor
New member
Username: Tailerteilor

Post Number: 1
Registered: 01-2012
Posted on Tuesday, January 10, 2012 - 06:30 pm:   

do not know much about java programming. I wonder if there are some examples ready to paste in the "nowsms/html" Thank
Des - NowSMS Support
Board Administrator
Username: Desosms

Post Number: 3712
Registered: 08-2008
Posted on Tuesday, January 10, 2012 - 09:44 pm:   

Hi,

What are you trying to accomplish?

Are you trying to modify the NowSMS web templates for the user interface?

If so, what are you trying to modify them to do?

--
Des
NowSMS Support
tailer teilor
New member
Username: Tailerteilor

Post Number: 2
Registered: 01-2012
Posted on Tuesday, January 10, 2012 - 11:46 pm:   

exactly
I wanted to make the site more beautiful and without all the options on the sides. Only to send sms. Something like this site: http://www.infinitysms.com/
Des - NowSMS Support
Board Administrator
Username: Desosms

Post Number: 3715
Registered: 08-2008
Posted on Wednesday, January 11, 2012 - 05:21 pm:   

Ok ... I'm not sure how Java fits into this.

But if you are submitting a text message to NowSMS, at a minimum it just needs two parameters, one named "phonenumber" that contains the recipient phone number, and the other "text" containing the text of the message to be sent.

The following HTML is about as simple as it gets:



<HTML>
<HEAD><TITLE>Send SMS</TITLE></HEAD>
<BODY>
<form method="post" action="/">
<table border="0">
<tr>
<td>Mobile Number:</td>
<td><input type="text" name="phonenumber" size="60"></td>
</tr>
<tr>
<td valign="top">Text Message:</td>
<td><textarea name="text" cols="60" rows="10"></textarea></td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Send">
</td>
</tr>
</table>
</form>
</BODY>
</HTML>

The NowSMS web user interface looks for a file named default.htm in the HTML directory.

Save this as default.htm and you've replaced the UI with a very primitive one.

--
Des
NowSMS Support
tailer teilor
New member
Username: Tailerteilor

Post Number: 3
Registered: 01-2012
Posted on Wednesday, January 11, 2012 - 05:50 pm:   

I was editing the "sendmessagetext.htm." Now that is no Default.htm edit the options side. THANK YOU!

Now to think of paying the full version =)