I want to design a login form on my website, can I do it without coding in Muse?

I want to design a login form on my website, can I do it without coding in Muse? And if I want to set an Email function within my website, can I still use Muse?
Thanks

Hi Wenshu... I am sure someone will be along here shortly with a "right" answer, but here is my 2 cents.  On part 2 of your question, I just say something like "Click HERE to e-mail me" and on the HERE part, I type the link mailto:[email protected] (filling in your actual e-mail address, of course AND no matter how many times I try to edit this, it still keeps putting the hyperlink in my response here!!!  That entire link has no spaces... that envelope icon is supposed to be helpful, but it's making me nuts) in the hyperlink box at the top of the Muse design page so that the person's default e-mail client will pop up to send me an e-mail when they click on that link on my site.
As far as part one goes, I don't do any login forms.... but I do create and use long forms for like applications and whatnot and I do have to code them outside of Muse because when I try to drop the code into the HTML box, it ends up not looking right.  I look forward to hearing the replies on the login box issue.
Good night.

Similar Messages

  • I want to create a login form by using servlets with database validation.

    Would you please provide me a code for a login form using servlets with Ms Access database validation?

    No. This is not a free coding service. Your request is (a) ridiculous, (b) offensive, and (c) off-topic. Locking this thread for later deletion.

  • I bought iWork and i want to put pages on my iPhone. How can i do that without paying for pages on the app store?

    I have iwork on my computer and i want it on my iphone without paying for it on the app store. how can i do that?

    Sorry, you will need to purchase the iPhone version. The Mac version will not work in the iPhone or iPad.
    Stedman

  • I am not happy with Firefox 4.0 and want to go back to 3.6. How can I do this without my information getting lost? Running Windows 7

    I do not like the new format. It is not compatible with my Norton.

    Please read this thread:
    http://support.mozilla.com/bs/questions/797708

  • How to Develop a Login Form In Developer 6i

    Hi to everyone,
    I have developed some forms in Developer 6i. Now i want to deploy these Forms to client side. I want to design a Login Form for the end users to Use the Database Application. But the problem is, I don't know how to Develop a Login Form with the permission for the End Users to access the application.
    Also please tell me how to configure the FORMS Developer 6i to Run the Forms by the end users.
    Please help me to solve out the problem.
    Thank you in advance.

    If you are using ADFBC, the easiest way is
    - drop the data control as ADF form
    - add CreateInsert method binding to the pagedef
    - add an invokeAction for the createInsert with a refresh property set to renderModel so that an empty creation form will be shown on page load
    for insertion
    - Finally, add the commit action as button
    Sireesha

  • Designing a login page

    hello experts,
    i want to design a login page so that user could preserve his authentication during the session,although I've logic for this in my mind but even though i want use the best way given by you.
    where should i store login information to verify the the correctness of the login data entered by user, in database? or elsewhere?

    BalusC wrote:
    Depends on your requirements and environment. Which type of authentication are you using? HTTP based? Form based? Custom web form? Which type of users? JAAS? Realm? Custom?
    would you please explain in brief what is http based, form based.....?
    I still dont know which catagery my reqierement falls in .
    regards
    san

  • Login form in adf

    Hi All,
    I am new in ADF. I want to create a login form with three fields, username, password and database as we create in forms builder. username and password will be oracle username and password. Please guide me how i can achieve this task.
    Thanks
    Shahzad

    Again they are using database tables. My requirements are i need user to be authenticated from oracle database not from custom tables. E.g i need three fields username pass word and database name.
    Username and password will be authenticate from oracle database like if user enter scott/lion@orcl an error page will be display and if enters scott/tiger@orcl and success page will be display. somthing like to change connection properties of my applications.
    Thanks for your reply

  • Jsp login form code

    hi all
    i am a student and new to jsp
    imy problem is that i want to create a login form and have a page that validates the username and password ... i have tried this but i am gettin errors with my sql line . can any1 help me out
    i have pasted the sql line below
    ResultSet rs = stmt.executeQuery("SELECT username,password FROM myusers WHERE username='"+request.getParameter("username_signin") + "' AND password=PASSWORD('"+request.getParameter("password_signin")+"')");
    thanks

    hi i also have similar problem to avoid the ' or1=1 that simple hacking code.
    i try to use ur method but i nt too sure abt the prepare statement , pls help thanks.
    <%@page contentType="text/html"%>
    <%@page import="java.sql.*"%>
    <html>
    <head>
    <title>Check Login</title>
    </head>
    <body>
    <%
    //String varName=request.getParameter("userName");
    //String varPass=request.getParameter("userPass");
    String DRIVER = "sun.jdbc.odbc.JdbcOdbcDriver";
    Connection con = null;
    String nextPage = null;
    try {
         // set up the DSNless connection to the EJewel.mdb database
         String source = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)}; DBQ=C:\\Program Files\\Apache Software Foundation\\Tomcat 5.5\\webapps\\ROOT\\assess20\\assess.mdb";
         // Open a Database connection with the Driver
         Class.forName(DRIVER);
         con = DriverManager.getConnection(source);
    // Create sql string to check whether userName is found in database
         //String sql = "Select * from Customers where userName='" + varName + "' and userPass='" + varPass + "'";
         PreparedStatement stmt = con.prepareStatement("SELECT * from Customers WHERE username= 1 AND password='2");
    stmt.setString(1, request.getParameter("userName"));
    stmt.setString(2, request.getParameter("userPass"));
         // Create statement to connect to Connection
         Statement stmt=con.createStatement();
         // Execute result set on sql string
         ResultSet rs=stmt.executeQuery(PreparedStatement);
         String userPass = "foobar";
    MessageDigest mdAlgorithm = MessageDigest.getInstance("MD5");
    mdAlgorithm.update(userPass.getBytes());
    byte[] digest = mdAlgorithm.digest();
    StringBuffer hexString = new StringBuffer();
    for (int i = 0; i < digest.length; i++) {
    userPass = Integer.toHexString(0xFF & digest);
    if (userPass.length() < 2) {
    userPass = "0" + userPass;
    hexString.append(userPass);
    // We now have a unique MD5 Hash of original input
    out.print(hexString.toString());
              if (rs.next())
              out.print("Exist");
              session.setAttribute("loginStatus", "login");
              session.setAttribute("userName", varName);
    session.setAttribute("userPass", varPass);
    nextPage="ShowMain.jsp";     
              else
              //out.print("Does not exist");
              nextPage="Showlogin.htm";
         // close the resultset and statement     
    rs.close();
    rs = null;
    stmt.close();
    stmt = null;
         } // end try
         // catch for 3 exceptions
         catch (ClassNotFoundException cnfe) {
    out.println ("Could not create driver " + cnfe.getMessage ()) ;
         catch (SQLException sqle) {
    out.println ("Could not connect to database " + sqle.getMessage ()) ;
         catch (Exception excpt) {
    out.println ("Could not connect to database, general error " + excpt.getMessage ()) ;
    } // end all catch
         // finally to close connection
    finally {
    if (con != null) {
    con.close();
    } // end finally
    %>
    <jsp:forward page="<%=nextPage%>"/>
    </body>
    </html>

  • How to design a Parameter Form

    Hi,
    How to design the parameter form with image which can be shown in the discoverer viewer.

    if i got your question right you need a image or logo in discoverer viewer right??
    Discoverer viewer dont support images or logos....Images are only supported in discoverer plus.
    anything more be clearer on the question.

  • Login Form Renie Garcia

    I am creating my first PHP site using Apache and MySQL. I am
    having problems creating a login form for customers.
    Can anyo give me a brief walkthrough.
    Rennie Garcia

    >I am creating my first PHP site using Apache and MySQL. I
    am having
    >problems creating a login form for customers.
    >
    > Can anyo give me a brief walkthrough.
    Google is your friend:
    http://www.plus2net.com/php_tutorial/php_login_script.php

  • I am wanting to add picture and designs to my form how do I place it in a specific place on my form?

    I am wanting to add picture and designs to my form how do I place it in a specific place on my form?

    Currently we only support one field/item on a line. We are working on adding a feature that allows you to put multiple fields/items on a single line. We hope to have that out in a few months.
    Randy

  • I want  to design a News like the *LInklist* by XML Form Builder

    Hello:
       Everyone!
       Now I have another problem about XML Form Builder
       I want  to design a News like the LInklist by XML Form Builder
       I want the result,For Example
    SAP News
           1news1
           2news2
           3news3
    who can give me some adviseon about how to disign the Edit, Show and Renderlistitem in XML
    Thanks a lot
    Hope your help!

    Hi,
    In XML Form
    1) Edit form is used for designing the user interface.
    2) Show form is used for displaying the xml form to the end user
    3) RenderListItem is used for  rendering the xml form into a small description like 1News1, 2news2  etc..
        Here you need to display only the heading of the xml form
    After you create the xml form
    Create Layout set  where you need to give the proerties like xml renderer form , no of items to display etc...
    Thanks&Regards,
    Raghu

  • Help with Login Form (JSP DB Java Beans Session Tracking)

    Hi, I need some help with my login form.
    The design of my authetication system is as follows.
    1. Login.jsp sends login details to validation.jsp.
    2. Validation.jsp queries a DB against the parameters received.
    3. If the query result is good, I retrieve some information (login id, name, etc.) from the DB and store it into a Java Bean.
    4. The bean itself is referenced with the current session.
    5. Once all that's done, validation.jsp forwards to main.jsp.
    6. As a means to maintain state, I prefer to use url encoding instead of cookies for obvious reasons.I need some help from step 3 onwards please! Some code snippets will do as well!
    If you think this approach is not a good practice, pls let me know and advice on better practices!
    Thanks a lot!

    Alright,here is an example for you.
    Assume a case where you don't want to give access to any JSP View/HTML Page/Servlet/Backing Bean unless user logging system and let assume you are creating a View Object with the name.
    checkout an example (Assuming the filter is being applied to a pattern * which means when a resource is been accessed by webapplication using APP_URL the filter would be called)
    public doFilter(ServletRequest req,ServletResponse res,FilterChain chain){
         if(req instanceof HttpServletRequest){
                HttpServletRequest request = (HttpServletRequest) req;
                HttpSession session = request.getSession();
                String username = request.getParameter("username");
                String password = request.getParameter("password");
                String method = request.getMethod();
                String auth_type  = request.getAuthType();
                if(session.getAttribute("useInfoBean") != null)
                    request.getRequestDispatcher("/dashBoard").forward(req,res);
                else{
                        if(username != null && password != null && method.equaIsgnoreCase("POST") && (auth_type.equalsIgnoreCase("FORM_AUTH") ||  auth_type.equalsIgnoreCase("CLIENT_CERT_AUTH")) )
                             chain.doFilter(req,res);
                        else 
                          request.getRequestDispatcher("/Login.jsp").forward(req,res);
    }If carefully look at the code the autherization is given only if either user is already logged in or making an attempt to login in secured way.
    to know more insights about where these can used and how these can be used and how ?? the below links might help you.
    http://javaboutique.internet.com/tutorials/Servlet_Filters/
    http://e-docs.bea.com/wls/docs92/dvspisec/servlet.html
    http://livedocs.adobe.com/jrun/4/Programmers_Guide/filters3.htm
    http://www.javaworld.com/javaworld/jw-06-2001/jw-0622-filters.html
    http://www.servlets.com/soapbox/filters.html
    http://www.onjava.com/pub/a/onjava/2001/05/10/servlet_filters.html
    and coming back to DAO Pattern hope the below link might help you.
    http://java.sun.com/blueprints/corej2eepatterns/Patterns/DataAccessObject.html
    http://java.sun.com/blueprints/patterns/DAO.html
    http://www.javapractices.com/Topic66.cjp
    http://www.ibm.com/developerworks/java/library/j-dao/
    http://www.javaworld.com/javaworld/jw-03-2002/jw-0301-dao.html
    On the whole(:D) it is always a good practice to get back to Core Java/J2EE Patterns.and know answers to the question Why are they used & How do i implement them and where do i use it ??
    http://www.fluffycat.com/java-design-patterns/
    http://java.sun.com/blueprints/corej2eepatterns/Patterns/index.html
    http://www.cmcrossroads.com/bradapp/javapats.html
    Hope that might help :)
    REGARDS,
    RaHuL

  • Default login form

    Hello there,
    I want to design a custom login screen that looks just like the oracle default login screen. I went through metalink's suggested method of creating LOGON.fmb.
    Now i want to learn something new. Is there a way of creating login screen (without much effort - about 6-7 hours) not written in oracle forms but using some other GUI & language that can be incorporated to my Oracle application.
    Please suggest me some ideas.
    Thanks a lot and have a nice day.

    Hi,
    you can do it in html:
    Custom HTML login page for forms, Doc ID: Note:279636.1
    Please tell us if this works!
    m.

  • Right way of login form...

    Hello
    I am a really newbie in web programming. I want to write a web application with JSF. I wonder what is the rgiht way of creating the login form. I tried to write a page segment file for it but page segments do not have prerender method so it cannot be fully controlled...I want something like that:
    login control will be two parts..
    if login info is not found in session, than it will show the login form.
    if the user is found in session, than it will show the menu for the user...
    but i couldnt do that because prerender methos is not available in page segments..
    what is the right way for doing that kind of thing?

    Indeed implement a Filter.
    Once an user logs in, put the User object in the HttpSession. Let the filter check on this User object. If this User object is null and you're not in the login page, then redirect to the login page.
    Do a Google search on "LoginFilter implements Filter" or "UserFilter implements Filter" and you'll find lot of examples.
    http://www.google.com/search?q=%22LoginFilter implements Filter%22
    http://www.google.com/search?q=%22UserFilter implements Filter%22
    Here is an advanced one which actually doesn't redirect if the User object doesn't exist, but this might give you some new insights: http://balusc.xs4all.nl/srv/dev-jep-usf.html

Maybe you are looking for

  • Apple ID displayed on iMessage

    Hi all, When I use iMessage to another iPhone user, I was told it was my Apple ID that was displayed, instead of my phone number.  We are on each other's contact lists but do not exchange email address.  Is there anyway to prevent my Apple ID disclos

  • Broadband for Mac and PC?

    I am looking for a suitable UK broadband service compatible with both my current OS 9.1 iBook (and a possible OSX conversion this year) and my partner's PC (XP Home). I don't particularly want to switch phone providers. I note BT does not yet support

  • Laptop battery replacemen​t options

    I have an HP DV7 laptop with the extra capacity battery.  It's the one with the hump that doubles as a 'lift' for the keyboard.  My wife has a DV6 with the smaller battery that has lost most of its staying power.  Can I replace her battery with one l

  • Restoring issue in nokia X3 Back up after software...

    Hi, I got a serious problem, a have an update software from nokia so before i make a backup from my phone : contact and all the other things. Then I started the update and now when I want to restore my backup,then all my images,songs backuped but my

  • Separate bullets linked to audio files

    Gang, I'm creating a presentation that has text bullets transitioning in on each slide and I'd like to have an audio file trigger for each bullet that appears, all in sync. - Bullet One Appears and audio file plays - Bullet Two Appears and audio file