Login and Search customization.

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
6/2/2011 8:13:10 AM
Gravatar
Total Posts 42

Login and Search customization.

Please is it possible to customize login for mojoportal such that the email and password textboxes will display at the top right-hand corner of the page (just like facebook)

Also for search too, such that one can actually position the search textbox and buttons
 

6/2/2011 9:56:05 AM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: Login and Search customization.

Sign in can either be accomplished by a link to the login page (link is typically found at the top), or with the Sign In module. The module allows direct entry of ID and password, but since it's a mojoPortal feature, it has to be placed within one of the CMS areas of a page (center, or left/right column).

Search is a bit different. The search box can be placed anywhere in the layout.master of your skin, and is styled with CSS, so the sky is (almost) the limit as far as where you can place it and how you can make it appear. For search box placement, see this thread with a helpful post by Joe Davis.

Jamie

6/2/2011 10:20:35 AM
Gravatar
Total Posts 2239

Re: Login and Search customization.

Hi,

You can add the Login control in your layout.master and then skin it to your tastes. To use the control, you will need to do the following:

  1. Add <%@ Register TagPrefix="mp" TagName="Login" Src="~/Controls/LoginControl.ascx" %> to the top of the layout.master file, directly under the <%@ Master line.
  2. Add the <mp:Login ID="login1" runat="server" SetRedirectUrl="false" /> to your markup in the layout.master. Placement is up to you. Put it where it makes sense for your design.
  3. Skin the control to meet your specifications.

HTH,
Joe D.

6/2/2011 10:21:51 AM
Gravatar
Total Posts 2239

Re: Login and Search customization.

Hi,

Also, you can read this document for more information on skinning the Search Input Box.

HTH,
Joe D.

6/2/2011 10:51:21 AM
Gravatar
Total Posts 42

Re: Login and Search customization.

Sweet, Awesome.

Mojoportal is truly great.

Thanks all.

Thank you so much Joe D, I definitely owe you a cup of cofee.

I'd try this out today.

Thanks a bunch

6/2/2011 10:52:09 AM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: Login and Search customization.

Thanks Joe! As usual, I learned something too. If you get the chance, a companion document about placing and skinning the login fields would be really interesting and helpful.

Jamie

You must sign in to post in the forums. This thread is closed to new posts.