Advertisement
Guest User

Register

a guest
Jul 17th, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.94 KB | None | 0 0
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Test2.aspx.cs" Inherits="Test2" %>
  2.  
  3. <!DOCTYPE html>
  4. <html>
  5.  
  6. <head>
  7. <title>Login</title>
  8. <meta charset="UTF-8">
  9. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
  10. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  11. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" integrity="sha384-gfdkjb5BdAXd+lj+gudLWI+BXq4IuLW5IT+brZEZsLFm++aCMlF1V92rMkPaX4PP" crossorigin="anonymous">
  12. <style>
  13. body,
  14. html {
  15. margin: 0;
  16. padding: 0;
  17. height: 100%;
  18. background: #60a3bc !important;
  19. }
  20. .user_card {
  21. height: auto;
  22. width: 470px;
  23. margin-top: auto;
  24. margin-bottom: auto;
  25. background: lightskyblue; /* #f39c12 */
  26. position: relative;
  27. display: flex;
  28. justify-content: center;
  29. flex-direction: column;
  30. padding: 10px;
  31. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  32. -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  33. -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  34. border-radius: 5px;
  35.  
  36. }
  37. .brand_logo_container {
  38. position: absolute;
  39. height: 140px;
  40. width: 140px;
  41. /* top: -75px; */
  42. border-radius: 50%;
  43. background: #60a3bc;
  44. padding: 10px;
  45. text-align: center;
  46. }
  47. .brand_logo {
  48. height: 120px;
  49. width: 120px;
  50. border-radius: 50%;
  51. border: 2px solid white;
  52. }
  53. .form_container {
  54. margin-top: 160px;
  55. }
  56. .login_btn {
  57. width: 70%;
  58. background-color: #c0392b;
  59. border: none;
  60. color: white;
  61. text-align: center;
  62. font-size: 16px;
  63. opacity: 1;
  64. transition: 0.3s;
  65. }
  66. .login_btn:hover {
  67. opacity: 0.6;
  68. }
  69. .login_btn:focus {
  70. box-shadow: none !important;
  71. outline: 0px !important;
  72. }
  73. .login_container {
  74. padding: 0 2rem;
  75. }
  76. .input-group-text {
  77. background: #c0392b !important;
  78. color: white !important;
  79. border: 0 !important;
  80. border-radius: 0.25rem 0 0 0.25rem !important;
  81. }
  82. .input_user,
  83. .input_pass:focus {
  84. box-shadow: none !important;
  85. outline: 0px !important;
  86. }
  87. .custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  88. background-color: #c0392b !important;
  89. }
  90. .input-group-text:hover {
  91. opacity: 0.6;
  92. }
  93.  
  94. </style>
  95. </head>
  96.  
  97. <body>
  98. <div class="container h-100">
  99. <div class="d-flex justify-content-center h-100">
  100. <div class="user_card">
  101. <div class="d-flex justify-content-center">
  102. <div class="brand_logo_container">
  103. <img src="SRB_logo.png" class="brand_logo" alt="Logo">
  104. </div>
  105. </div>
  106. <div class="d-flex justify-content-center form_container">
  107. <form>
  108. <div class="input-group mb-2">
  109. <div class="input-group-append">
  110. <span class="input-group-text"><i class="fas fa-user"></i></span>
  111. </div>
  112. <input type="text" name="" class="form-control input_user" value="" placeholder="cognome">
  113. </div>
  114. <div class="input-group mb-2">
  115. <div class="input-group-append">
  116. <span class="input-group-text"><i class="fas fa-user"></i></span>
  117. </div>
  118. <input type="text" name="" class="form-control input_user" value="" placeholder="nome">
  119. </div>
  120. <div class="input-group mb-2">
  121. <div class="input-group-append">
  122. <span class="input-group-text">@</span>
  123. </div>
  124. <input type="text" name="" class="form-control input_user" value="" placeholder="username">
  125. </div>
  126. <div class="input-group mb-2">
  127. <div class="input-group-append">
  128. <span class="input-group-text"><i class="fas fa-key"></i></span>
  129. </div>
  130. <input type="password" name="" class="form-control input_pass" value="" placeholder="password">
  131. </div>
  132. <div class="input-group mb-2">
  133. <div class="input-group-append">
  134. <span class="input-group-text"><i class="fas fa-key"></i></span>
  135. </div>
  136. <input type="password" name="" class="form-control input_pass" value="" placeholder="conferma password">
  137. </div>
  138. </form>
  139. </div>
  140. <div style="padding-top: 10px;"></div>
  141. <div class="d-flex justify-content-center mt-3 login_container">
  142. <button type="button" name="button" class="btn login_btn">Registrati</button>
  143. </div>
  144. <div class="mt-4">
  145. <div class="d-flex justify-content-center links">
  146. Hai già un account? <a href="Test.aspx" class="ml-2">Accedi</a>
  147. </div>
  148. <div class="d-flex justify-content-center links">
  149. <!-- <a href="#">Hai dimenticato la password?</a> -->
  150. </div>
  151. </div>
  152. </div>
  153. </div>
  154. </div>
  155. </body>
  156. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement