Advertisement
Guest User

login

a guest
Apr 21st, 2019
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.32 KB | None | 0 0
  1. <!doctype HTML>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
  7. <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  9. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
  10.  
  11. <style type="text/css">
  12. body{
  13. background-image: url("<?php echo base_url('img/login/wallpaper.jpg'); ?>");
  14. background-size: 100%;
  15. }
  16.  
  17. .header{
  18. background-color: #1F1F1F;
  19. background-image: url("<?php echo base_url('img/login/sony_logo.png'); ?>");
  20. background-position: center center;
  21. background-size: contain;
  22. background-repeat: no-repeat;
  23. margin: auto;
  24. height: 5.6rem;
  25. width: 35%;
  26. }
  27.  
  28. #x{
  29. height: 5.6rem;
  30. width: 6rem;
  31. background-size: 4rem 4rem;
  32. background-position: 50% 50%;
  33. background-repeat: no-repeat;
  34. cursor: pointer;
  35. background-color: transparent;
  36. float: right;
  37. opacity: 0.6;
  38. }
  39.  
  40. #x:hover{
  41. opacity: 1;
  42. }
  43.  
  44. .content{
  45. background-color: white;
  46. margin: auto;
  47. height: 600px;
  48. width: 35%;
  49.  
  50. }
  51.  
  52. #ps-logo{
  53. width: 360px;
  54. max-height: 110px;
  55. display: block;
  56. margin-left: auto;
  57. margin-right: auto;
  58. }
  59.  
  60. #black-text{
  61. font-family: -apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,HiraKakuProN-W3,'Noto Sans CJK JP',sans-serif;
  62. font-size: 14px;
  63. text-align: left;
  64. margin: 0;
  65. display: block;
  66. padding-top: 30px;
  67. padding-bottom: 6px;
  68. width: 320px;
  69. min-height: 18px;
  70. }
  71.  
  72. .content-text{
  73. margin-right: 40px;
  74. margin-left: 40px;
  75. }
  76.  
  77. #blue-text{
  78. font-family: -apple-system,BlinkMacSystemFont,'Helvetica Neue',Helvetica,HiraKakuProN-W3,'Noto Sans CJK JP',sans-serif;
  79. text-align: left;
  80. font-size: 1.4rem;
  81. line-height: 1.8rem;
  82. color: #4572ed;
  83. cursor: pointer;
  84. padding-top: 15px;
  85. }
  86.  
  87. #blue-text:hover{
  88. color:darkblue;
  89. }
  90.  
  91. .input-box{
  92. background-color: #E8F0FE;
  93. border-color: rgb(200, 200, 200);
  94. border-radius: 0;
  95. border-style: solid;
  96. border-width: 1px;
  97. font-family: Arial;
  98. font-size: 16px;
  99. height: 48px;
  100. margin: 0;
  101. width: 320px;
  102. padding-left: 10px;
  103. padding-right: 10px;
  104. margin-top: 10%;
  105. }
  106. </style>
  107. <title>Sign In | Sony Entertainment Network</title>
  108. </head>
  109. <body>
  110. <br><br>
  111. <div class="container">
  112. <div class="header">
  113. <a href="#!"><img id="x" src="<?php echo base_url('img/login/download.png'); ?>"></a>
  114. </div>
  115. <div class="content">
  116. <img id="ps-logo" src="<?php echo base_url('img/login/logo_playstation.png'); ?>">
  117. <div class="content-text">
  118. <div id="black-text" align="center">
  119. Access many Sony group services, all with one sign-in ID.
  120. </div>
  121. <div id="blue-text" align="center">
  122. Learn More
  123. </div>
  124. <div>
  125. <input type="text" name="email" class="input-box" placeholder="Sign-In ID (Email Address)">
  126. </div>
  127. </div>
  128. </div>
  129. </div>
  130. </body>
  131. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement