0

I am trying to open uo different forms within one view so I can have things like registers etc in them.

This is an example of what I am trying to do: enter image description here

When I click sign up, it should pop up a window with my log in script.

Can someone tell me how this can be done and show me to some documentation/tutorials on this sort of thing?

Thanks!

Naincy
  • 2,953
  • 1
  • 12
  • 21
Divergent
  • 141
  • 2
  • 19

1 Answers1

0

Please mention what you did . You can call view through jquery . hope below code will help

$("click on popup").click(function(event) {

    $( "#loadwhere" ).load( SITEURL+"/login", function() {})

});
M Reza Saberi
  • 7,134
  • 9
  • 47
  • 76