lollhosh

Untitled

Aug 16th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. index.php
  2.  
  3.  
  4.  
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <title>cadastre-se</title>
  9.  
  10. <style>
  11. /*
  12. - Como Fazer Uma Imagem de Fundo Preencher Toda a Tela
  13. - Autor: Guilherme Müller
  14. - Site: http://guilhermemuller.com.br/blog/2011/06/08/como-fazer-uma-imagem-de-fundo-preencher-a-tela-inteira/
  15. */
  16.  
  17. /* reset de margens */
  18. * {
  19. margin: 0;
  20. padding:0;
  21. }
  22.  
  23. /* para garantir que estes elementos ocuparão toda a tela */
  24. body, html {
  25. width: 100%;
  26. height: 100%;
  27. font-family: Arial, Tahoma, sans-serif;
  28. }
  29.  
  30. body {
  31. background: url(img/bg.jpg) center center no-repeat fixed;
  32.  
  33. -webkit-background-size: cover;
  34. -moz-background-size: cover;
  35. -o-background-size: cover;
  36. background-size: cover;
  37. }
  38.  
  39. #site {
  40. width: 560px;
  41. padding: 20px;
  42. margin: 40px auto;
  43. background: #FFF; /* fundo branco para navegadores que não suportam rgba */
  44. background: rgba(255,255,255,0.8); /* fundo branco com um pouco de transparência */
  45. }
  46.  
  47. p {
  48. margin-bottom: 1.5em;
  49. }</style>
  50. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  51. <script>
  52. </script>
  53.  
  54. </head>
  55. <body >
  56. <center>
  57. <br><br><br><br><br><br><br><br>
  58. <form method="POST" action="processo.php">
  59.  
  60. <label>Nome de Usuario: <br></label>
  61. <input type="text" name="usuario" placeholder="Digite seu usuario"><br>
  62.  
  63. <label>Seu Email:<br></label>
  64. <input type="email" name="email" placeholder="Digite seu email"><br>
  65.  
  66. <label>Sua senha:<br></label>
  67. <input type="password" name="senha" placeholder="Digite sua senha"><br>
  68. <br>
  69. <input type="submit" name="input"></center>
  70.  
  71.  
  72. </form>
  73.  
  74.  
  75.  
  76.  
  77.  
  78. </body>
  79. </html>
Add Comment
Please, Sign In to add comment