HTML Login Nice form


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <title>Cliente - Panel administrador</title>
  5.  
  6. <!-- CSS -->
  7. <link href="style/css/style.css" rel="stylesheet" type="text/css" media="screen" />
  8. <!--[if IE 6]><link rel="stylesheet" type="text/css" media="screen" href="style/css/ie6.css" /><![endif]-->
  9. <!--[if IE 7]><link rel="stylesheet" type="text/css" media="screen" href="style/css/ie7.css" /><![endif]-->
  10.  
  11. <!-- JavaScripts-->
  12. <script type="text/javascript" src="style/js/jquery.js"></script>
  13. <script type="text/javascript" src="style/js/jNice.js"></script>
  14. </head>
  15.  
  16. <form name="frmLogin" id="frmLogin" method="post" action="?login=1">
  17. <div id="wrapper">
  18. <!-- h1 tag stays for the logo, you can use the a tag for linking the index page -->
  19. <img src="style/img/logo.gif" style="margin-top: 10px; margin-bottom: 40px;">
  20.  
  21.  
  22. <!-- // MENU LATERAL IZQUIERDO -->
  23. <div id="containerHolder">
  24. <div id="container">
  25.  
  26. <!-- // Fin MENU LATERAL IZQUIERDO -->
  27.  
  28. <!-- h2 TITULO SECCION -->
  29. <h2 style="width: 540px; float: left; margin-left: 200px;">Panel de control &raquo; Login</h2>
  30. <div id="main" style="margin-top: 20px; width: 540px; float: left; margin-left: 200px;">
  31. <form action="novedades.html" class="jNice">
  32.  
  33. <p><label>Usuario:</label><input type="text" name="usuario" id="usuario" class="text-medium" /></p>
  34. <p><label>Password:</label><input type="password" name="password" id="password" class="text-medium" /></p>
  35. <input type="submit" value="Entrar" />
  36. </form>
  37. <?
  38. if($derror!="")
  39. {
  40. ?>
  41. <h3 style="color: #c6001b;"><? echo($derror); ?></h3>
  42. <?
  43. }
  44. ?>
  45.  
  46.  
  47. </div>
  48. <!-- // #main -->
  49.  
  50. <div class="clear"></div>
  51. </div>
  52. <!-- // #container -->
  53. </div>
  54. <!-- // #containerHolder -->
  55.  
  56. <p id="footer">Cliente - Panel administrador V 1.0 - Desarrollado por <a href="http://www.nosmk.com" target="_blank">NØ SMOKING.</a></p>
  57. </div>
  58. <!-- // #wrapper -->
  59. </form>
  60. </body>
  61. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.