Rendering this to the html page

hi guys,

i have develop some coding like login forms and registration forms in
normal ROR way. they are working 100% ok as i want.

bt not i have created the html interface to my page and find dificult to
add the ROR components that i have created to the newly design web
interface.

For a example.

in the in my HTML file i have a allocate separate area(in the top right
hand corner of the page.) to add my login box i created in the ROR way.
i find difficult to integrate them together. even tried some codings in
the net to my taks. bt fails.

My html file is named as index. html and my login form is in the
app/login/login.rhtml

                <!--Side Box Begin-->
      <div class="side-box-top">
        <div class="OrangeTitleMedium">User Login</div>
      </div>
      <div class="side-box-middle">


                            ###### login form should comes here.....
                               (that i have design in the

app/login/login.rhtml )

         </div>
      <div class="side-box-bottom">.</div>
       <!--Side Box End-->

can some body help me with this…

Thankssssssssssssssssss

On Nov 26, 2007, at 11:17 PM, Nadeesha M. wrote:

i have develop some coding like login forms and registration forms in
normal ROR way. they are working 100% ok as i want.

bt not i have created the html interface to my page and find
dificult to
add the ROR components that i have created to the newly design web
interface.

See if the discussions in this article helps you…

http://www.railsdev.ws/blog/3/modular-page-assembly-in-rails/

– gw (www.railsdev.ws)

Greg W. wrote:

On Nov 26, 2007, at 11:17 PM, Nadeesha M. wrote:

i have develop some coding like login forms and registration forms in
normal ROR way. they are working 100% ok as i want.

bt not i have created the html interface to my page and find
dificult to
add the ROR components that i have created to the newly design web
interface.

See if the discussions in this article helps you…

WEBSITE.WS - Your Internet Address For Life™

– gw (www.railsdev.ws)

thanks for the link pal.

i got some idea by going through it. bt the case is early also i used
the a code look this

(render(:partial => (controller.action_name + “_left”)) rescue nil) %>

but here is seems the page we are going to render has to be in the same
controller (means same sub folder in the app folder) (i do not sure
weather i am 100% correct on this.)

bt i want to call for a different controller with a action how to
achive it/.

thanksssssssss