Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6554965
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:45:45+00:00 2026-05-25T12:45:45+00:00

I want to develop a login page for my application. I searched on Internet

  • 0

I want to develop a login page for my application. I searched on Internet and found a .psd file. I will write my own JavaScript code for it but how can I use that .psd file to get css files and images suitable to use for programmatic purposes?

Link for .psd file: http://www.premiumpixels.com/freebies/elegant-login-form-design-psd/

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T12:45:45+00:00Added an answer on May 25, 2026 at 12:45 pm

    EDIT

    You can find some PSD-to-CSS converters like: http://psd2htmlconverter.com/en/
    But you’ll get a bunch of non-sense html markups and CSS code
    With a bit of knowlecge of HTML-CSS you can create anything you want by just seeing an image and with a basic image-editor.
    Tutorials like: http://www.1stwebdesigner.com/freebies/psd-htmlcss-conversion-tutorials/

    or…


    Why you just don’t use pure CSS / CSS3 ?

    And a bit of jQuery magic?
    (With NO images used!)

    LOGIN FORM DEMO

    Login form demo

    HTML:

    <div id="loginContainer">
        <div id="loginForm">        
            <b>Username:</b><br>
            <input type="text" name="uname" /><br>
            <b>Password:</b> <span><a href="#">Forgot your password?</a></span><br>
           <input type="text" name="psswd" />       
        </div>  
        <div id="loginFormFooter">       
            <input type="checkbox"/> Keep me logged in <input class="login" type="button" value="Login"/>      
        </div>
    </div>
    

    CSS:

    #loginContainer{
        font-family:Arial, Helvetica, sans-serif;
        color:#666;
        font-size:17px;
        position:relative;
        width:400px;
        height:290px;
        background:#fff;
        border:1px solid #D1DCDE;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }
    #loginForm{
        position:relative;
        width:350px;
        height:150px;
        padding:25px;
        line-height:34px;
    }
    #loginForm input{
        border:1px solid #D1DCDE;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        width:322px;
        padding:0px 12px;
        height:30px;
        line-height:30px;
    }
    .active{
         border:1px solid #B8D4EA;
        -webkit-box-shadow: 0px 0px 1px 7px #F3F8FC;
           -moz-box-shadow: 0px 0px 1px 7px #F3F8FC;
                box-shadow: 0px 0px 1px 6px #F3F8FC;       
    }
    #loginForm span{
        position:absolute;
        width:300px;
        right:25px;
        text-align:right;
    }
    #loginForm span a{
        color:#666;
        font-size:15px;
        text-decoration:none;
    }
    #loginFormFooter{
        position:relative;
        width:350px;
        height:39px;
        padding:25px;
        background:#F0F5F8;
        border-top:1px solid #D1DCDE;
        line-height:34px;
    }
    #loginFormFooter .login{
        position:absolute;
        height:38px;
        right:25px;
        width:80px;
        text-align:center;
        border:1px solid #7EAFCD;
        -webkit-border-radius: 18px;
        -moz-border-radius: 18px;
        border-radius: 18px;
        font-weight:bold;
        color:#fff;
        text-shadow: 1px 0px 1px #999;
        filter: dropshadow(color=#999, offx=1, offy=1);
        background: #b3e1ef; /* Old browsers */
        background: -moz-linear-gradient(top, #b3e1ef 0%, #7eafcd 100%, #a8d1dd 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b3e1ef), color-stop(100%,#7eafcd), color-stop(100%,#a8d1dd)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #b3e1ef 0%,#7eafcd 100%,#a8d1dd 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #b3e1ef 0%,#7eafcd 100%,#a8d1dd 100%); /* Opera11.10+ */
        background: -ms-linear-gradient(top, #b3e1ef 0%,#7eafcd 100%,#a8d1dd 100%); /* IE10+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3e1ef', endColorstr='#a8d1dd',GradientType=0 ); /* IE6-9 */
        background: linear-gradient(top, #b3e1ef 0%,#7eafcd 100%,#a8d1dd 100%); /* W3C */
    }
    

    jQuery:

    $('#loginForm input[type="text"]').bind('focus',function(){
       $(this).addClass('active').siblings().removeClass('active');
    });
    
    $('#loginForm input[type="text"]:eq(0)').focus();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to develop a small web application (small=4 entities, 3 html forms, login,
I want to develop one application where it will automatically (based on some logic)
I want to develop a windows application. If I use native C++ and MFC
I want to develop a mobile web application using asp.net 3.5 that can be
I want to develop an iPhone application using the utility template, where the flip
I want to develop an application that disables the Background Data (new feature in
I want to develop a web application, like an online scheduler. (Yes I know
I want to develop a photo browser application in Windows platfrom, the UI should
I want to develop an application in which user input an image (of a
I'm using Netbeans to develop a Java application and I want to create a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.