loginConcept.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <head>
  3. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  4. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
  5. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
  6. <link rel="stylesheet" type="text/css" href="assets/css/global.css">
  7. <link rel="stylesheet" type="text/css" href="assets/css/header.css">
  8. <link rel="stylesheet" type="text/css" href="assets/css/nav.css">
  9. </head>
  10. <style>
  11. @font-face {
  12. font-family: inconsolata;
  13. src: url('assets/fonts/Inconsolata-Bold.ttf');
  14. }
  15. .login-window {
  16. margin-left: 40%;
  17. width: 20%;
  18. height: 100%;
  19. opacity: 0.7;
  20. background-color: black;
  21. text-align: center;
  22. }
  23. .logo {
  24. margin-top: 40px;
  25. margin-bottom: 40px;
  26. width: 150px;
  27. align: center;
  28. }
  29. .title {
  30. font-family: inconsolata;
  31. font-size: 20px;
  32. color: white;
  33. }
  34. .sub-title {
  35. font-family: inconsolata;
  36. font-size: 15px;
  37. color: #bdc3c7;
  38. font-weight: bold;
  39. }
  40. input {
  41. width: 80%;
  42. border: none;
  43. border-bottom: 2px solid white;
  44. font-size: 20px;
  45. outline: none;
  46. color: #95a5a6;
  47. background: none;
  48. margin-bottom: 5px;
  49. margin-top: 7px;
  50. }
  51. html,
  52. body {
  53. background: url('assets/images/loginBackground.jpg') no-repeat center center fixed;
  54. background-size: cover;
  55. overflow-x: hidden;
  56. overflow-y: auto;
  57. }
  58. .addon {
  59. position: relative;
  60. }
  61. .addon .glyphicon {
  62. position: absolute;
  63. padding-top: 4.9%;
  64. color: white;
  65. pointer-events: none;
  66. font-size: 20px;
  67. text-align: center;
  68. left: 47%;
  69. }
  70. .inline-title-div {
  71. width: 80%;
  72. text-align: center;
  73. margin: 0 auto;
  74. }
  75. .title-inline {
  76. position: relative;
  77. z-index: 1;
  78. overflow: hidden;
  79. }
  80. .title-inline:before,
  81. .title-inline:after {
  82. position: absolute;
  83. top: 51%;
  84. overflow: hidden;
  85. width: 50%;
  86. height: 2px;
  87. content: '\a0';
  88. background-color: white;
  89. }
  90. .title-inline:before {
  91. margin-left: -50%;
  92. text-align: right;
  93. }
  94. </style>
  95. <body>
  96. <div class="login-window" style="text-align: center;">
  97. <img class="logo" src="assets/images/WesterosSealCircle.png">
  98. <p class="title"> MEMBER LOGIN </p>
  99. <div class="addon">
  100. <i class="glyphicon glyphicon-user"></i>
  101. <input>
  102. </div>
  103. <p class="sub-title"> USERNAME </p>
  104. <div class="addon">
  105. <i class="glyphicon glyphicon-lock"></i>
  106. <input>
  107. </div>
  108. <p class="sub-title"> PASSWORD </p>
  109. <div class="inline-title-div">
  110. <pre class="title title-inline"> REGISTER </pre>
  111. </div>
  112. </div>
  113. </body>
  114. </html>