| How to create new form on main page |
| maxi031 | Date: Thursday, 2008-03-27, 7:54 Pm | Message # 1 |
Newbie
Group: Users
Messages: 7
Reputation: 0 [0%]
Status: Offline
| Hi all I just register with ucoz and wana to asq a little question. I make a site for my 031 team in trackmania game I am trying to add new form in site meny with name Join us. I was remake Test section and name it JoinUs, put some swf file with JoinUs form(doesnt work) Want to asq can somebody help me to make it work. I want that in that section guests can post something about them and when they push Send their message go in This Section like new topic with vote on it(Yes or No). And then member of my team can vote do we or do we not lett them in our Team. If somebody know solution for my problem pls lett me know. Thx in advance
Sry on bad english
|
| |
|
|
|
| Eckho | Date: Friday, 2008-03-28, 0:25 Am | Message # 2 |
GFX Certified
Group: Moderators
Messages: 416
Reputation: 23 [7%]
Status: Offline
| Pls Clear Your Question i can help you Proceed with your main problem goodluck
|
| |
|
|
|
| maxi031 | Date: Friday, 2008-03-28, 5:21 Am | Message # 3 |
Newbie
Group: Users
Messages: 7
Reputation: 0 [0%]
Status: Offline
| Thx Eckho for your interests. So here is the whole problem. I know how to write script for joinUs section Here is Script that I was wrote(not swf this is html): Code <body> </p> <form name="form1" method="post" action=""> <label> <div align="left">TMN login<br> <input type="text" name="textfield" /> </div> </label> </form> <form name="form2" method="post" action=""> <label> <div align="left">Name<br> <input type="text" name="textfield2"> </div> </label> </form> <form name="form3" method="post" action=""> <label>Country<br> <input type="text" name="textfield3" /> </label> </form> <form name="form4" method="post" action=""> <label>Message(Something about yourself) <br> <textarea name="textarea" cols="50" rows="5"></textarea> </label> </form> <form name="form5" method="post" action=""> <label></label> <input type="submit" name="Submit" value="Submit"> </form> </body> But I dont know how to tell this script when gest push Submit button script should go In JoinUs section on my forum and make a new topic. On that topic should be Message text(textarea) from my script and name of topic should be the Name(textfield2) from my script. Is that posible to work out? Big thx in Advance
Sry on bad english
|
| |
|
|
|
| Eckho | Date: Friday, 2008-03-28, 5:33 Am | Message # 4 |
GFX Certified
Group: Moderators
Messages: 416
Reputation: 23 [7%]
Status: Offline
| yes this till work out but im trying to analyze try to add the Url of the new topic in the Forum Section here ->> action="url"
|
| |
|
|
|
| Flappa | Date: Friday, 2008-03-28, 1:03 Pm | Message # 5 |
|
Regular
Group: Checked
Messages: 53
Reputation: 1 [0%]
Status: Offline
| i would love to know how to do this myself can someone write a tutorial for it please ?
|
| |
|
|
|
| Eckho | Date: Friday, 2008-03-28, 1:09 Pm | Message # 6 |
GFX Certified
Group: Moderators
Messages: 416
Reputation: 23 [7%]
Status: Offline
| hmmm maxi031, can give you tutorial his good
|
| |
|
|
|
| maxi031 | Date: Saturday, 2008-03-29, 8:25 Am | Message # 7 |
Newbie
Group: Users
Messages: 7
Reputation: 0 [0%]
Status: Offline
| If I work it out I will explain how you can do the same on any forum. Now I am stuck. Eckho that with url cant work(I was try), there must be some script for creating new post or poll. I think that some ucoz coder can help us to work it out. Then he can add it as new tamplate for site.
Sry on bad english
|
| |
|
|
|
| Eckho | Date: Sunday, 2008-03-30, 1:58 Am | Message # 8 |
GFX Certified
Group: Moderators
Messages: 416
Reputation: 23 [7%]
Status: Offline
| I think Admin UcoZ, can Help you About Your Problem
|
| |
|
|
|
| UcoZ | Date: Monday, 2008-03-31, 3:36 Am | Message # 9 |
UcoZ Admin
Group: Administrators
Messages: 197
Reputation: 17 [5%]
Status: Offline
| maxi031, 1. You must use "Site editor", but not "Tests" module. 2. If you want the "Join Us" form to be sent to your email, you have to use "Mail form" module and place code $MFORM_n$ to created page content block. 3. If you want users to be registered on your site, so just add new menu item "JoinUS" with $REGISTER_LINK$ as link.
|
| |
|
|
|
| maxi031 | Date: Monday, 2008-03-31, 7:54 Am | Message # 10 |
Newbie
Group: Users
Messages: 7
Reputation: 0 [0%]
Status: Offline
| Thanks for help. I use Macromedia Dreamweaver (Site editor)-if you think on that I was figure out it myself. I was edited email form like I want and now when someone fillout the form and send I resive an email from him(whery nice solution). I stil trying to connet it with new poll on my main page(Is that posible) Gest dont have to be registered on forum, join us form is a form where gests put something about themselfs, so 031 team members can decide can they or can not be part of our 031 team(game team). So I am trying to connect that form with poll on my main page, when gest fillout the form and press send is possible that on my main page form appear as poll(and then 031members can vote for new members). I am hope that you understand me
Sry on bad english
Message edited by maxi031 - Tuesday, 2008-04-01, 10:34 Am |
| |
|
|
|
| Shikamaru | Date: Thursday, 2008-04-03, 1:11 Am | Message # 11 |
|
Curious
Group: Users
Messages: 36
Reputation: 1 [0%]
Status: Offline
| Try this: Quote <html> <body> <form action="MAILTO: someone@yoursite.com" method="post" enctype="text/plain"> <h3>This form sends an e-mail to your email.</h3> Name:<br> <input type="text" name="name" value="yourname" size="20"> <br> Mail:<br> <input type="text" name="mail" value="yourmail" size="20"> <br> Comment:<br> <input type="text" name="comment" value="yourcomment" size="40"> <br><br> <input type="submit" value="Send"> <input type="reset" value="Reset"> </form> </body> </html> Edit this: BLUE Insert your email RED "<h3>" tags into "<p> tags to write in a normal font and size. Added (2008-04-03, 1:11 Am) --------------------------------------------- Also i for got to add a this, if you want to add more areas like a password and such just add this If you want to add a password: Quote <input type="text" name="password" value="yourpassword" size="20"> The things in blue you have to change to the field entry
Message edited by Shikamaru - Thursday, 2008-04-03, 1:13 Am |
| |
|
|
|
| Flappa | Date: Thursday, 2008-04-03, 5:32 Am | Message # 12 |
|
Regular
Group: Checked
Messages: 53
Reputation: 1 [0%]
Status: Offline
| hope you figured it out, and can write a tutorial for us
|
| |
|
|
|
| Shikamaru | Date: Friday, 2008-04-04, 1:43 Am | Message # 13 |
|
Curious
Group: Users
Messages: 36
Reputation: 1 [0%]
Status: Offline
| pleaselet me know if my html worked if not i'll try to fix it
|
| |
|
|
|
| maxi031 | Date: Saturday, 2008-04-05, 6:08 Pm | Message # 14 |
Newbie
Group: Users
Messages: 7
Reputation: 0 [0%]
Status: Offline
| Thx for bother Shikamaru, but I was sad that my email form is not problem anymore Quote I was figure out it myself. I was edited email form like I want and now when someone fillout the form and send I resive an email from him(whery nice solution). For mail I was used Mail form from ucoz. I was just transform that form a little and its working great(JoinUs) so now my main problem is to connect that JoinUs form with Poll on my main page as I was explain in my last post(If someone understand my english lol).
Sry on bad english
|
| |
|
|