Guest User

Front-End

a guest
May 4th, 2017
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.80 KB | None | 0 0
  1. ////////////////////////// isvp.php ////////////////////////
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>ISVP</title>
  6. <meta charset="UTF-8">
  7. <meta name="viewport" content="width = device-width, initial-scale = 1.0">
  8. <link rel="stylesheet" type="text/css" href="ISVP.css" />
  9. <link rel="shortcut icon" href="stocks.ico" />
  10. </head>
  11. <body>
  12. <div class="bgimage" onclick="shiftBack()"></div>
  13. <header>
  14. <div class="nm">ISVP</div>
  15. <div class="h1">|</div>
  16. <a href="#" onclick="document.getElementById('id01').style.display='block'; shiftBack();" class="login">Login</a>
  17. <div id="id01" class="login-bg">
  18. <form class="login-form animateL" action="login.php" method="post">
  19. <div class="login-detail">
  20. <label><b>Username</b></label>
  21. <input type="text" placeholder="Enter Username" name="username" required><br>
  22.  
  23. <label><b>Password</b></label>
  24. <input type="password" placeholder="Enter Password" name="password" required>
  25. <button type="submit" name="login_btn">Login</button>
  26. </div>
  27. </form>
  28. </div>
  29. <a href="#" onclick="document.getElementById('id02').style.display='block'; shiftEXT();" class="signup">Sign Up</a>
  30. <div id="id02" class="signup-bg">
  31. <form class="signup-form animateS" action="signup.php" method="post">
  32. <div class="signup-detail">
  33. <label><b>Username</b></label>
  34. <input type="text" placeholder="Enter Username" name="username" required><br>
  35.  
  36. <label><b>Password</b></label>
  37. <input type="password" placeholder="Enter Password" id="password" name="password" required><br>
  38.  
  39. <label><b>Confirm Password</b></label>
  40. <input type="password" placeholder="Confim Password" id="confirm_password" name="cpassword" required><br>
  41.  
  42. <label><b>E-mail Address</b></label>
  43. <input type="email" placeholder="Enter E-mail Id" name="email" required><br>
  44.  
  45. <label><b>Phone Number</b></label>
  46. <input type="int" placeholder="Enter Contact Number" name="cont_num" required><br>
  47. <button type="submit" name="sign_btn">Sign Up</button>
  48. </div>
  49. </form>
  50. </div>
  51. <script type="text/javascript">
  52. var login = document.getElementById('id01');
  53. var signup = document.getElementById('id02');
  54. window.onclick = function(event) {
  55. if (event.target == login) {
  56. login.style.display = "none";
  57. }
  58. else if (event.target == signup){
  59. signup.style.display = "none";
  60. }
  61. }
  62.  
  63. var password = document.getElementById("password");
  64. var confirm_password = document.getElementById("confirm_password");
  65. function validatePassword(){
  66. if (password.value != confirm_password.value){
  67. confirm_password.setCustomValidity("Passwords Don't Match");
  68. }
  69. else{
  70. confirm_password.setCustomValidity('');
  71. }
  72. }
  73. password.onchange = validatePassword;
  74. confirm_password.onkeyup = validatePassword;
  75.  
  76. function shiftEXT(){
  77. document.getElementById('tip').style.marginTop = "560px";
  78. }
  79.  
  80. function shiftBack(){
  81. document.getElementById('tip').style.marginTop = "530px";
  82. }
  83. </script>
  84. </header>
  85. <section>
  86. Intrinsic Stock Value Predictor
  87. <div class="intro">
  88. Welcome to I.S.V.P, this program will help you by using a company<br>data and analysing the future value with the help of a neural network.<br><br>The program will also show you, whether the stock is aggressive<br>or not by calculating the beta value of the stock.
  89. </div>
  90. </section>
  91. <div id="tip">
  92. Not sure about your investments, having trouble in deciding in which stocks to invest. We are here to help you<br>with our program, this program will help you by telling you the future predictions and the risk involved with it.
  93. </div>
  94. <footer>
  95. <div class="f1">&copy 2017 Intrinsic Stock Value Predictor</div>
  96. </footer>
  97. </body>
  98. </html>
  99.  
  100. //////////////////// isvp.css ///////////////
  101.  
  102. .bgimage{
  103. background: url(ow.jpg) no-repeat;
  104. width: 100%;
  105. height: 696px;
  106. background-size: 100% 100%;
  107. position: fixed;
  108. top: 0px;
  109. left: 0px;
  110. }
  111. header{
  112. position:fixed;
  113. width: 100%;
  114. height: 50px;
  115. background-color: black;
  116. top:0px;
  117. left: 0px;
  118. opacity: 0.6;
  119. font-family: 'Lato', sans-serif;
  120. }
  121. .nm{
  122. position: fixed;
  123. color: white;
  124. float: left;
  125. text-align: left;
  126. font-size: 30px;
  127. margin: 8px 0px 0px 20px;
  128. }
  129. .h1{
  130. position: fixed;
  131. color: white;
  132. float: left;
  133. text-align: left;
  134. font-size: 30px;
  135. margin: 5px 0px 0px 150px;
  136. }
  137. .login{
  138. position: fixed;
  139. border-left: 3px solid white;
  140. color: white;
  141. text-align: center;
  142. text-decoration: none;
  143. display: inline-block;
  144. font-size: 20px;
  145. left: 1240px;
  146. padding: 13px 40px 13px 30px;
  147. cursor: pointer;
  148. }
  149. input[type=text], input[type=password] ,input[type=email], input[type=int]{
  150. width: 100%;
  151. padding: 12px 20px;
  152. margin: 8px 0;
  153. display: inline-block;
  154. border: 1px solid #ccc;
  155. box-sizing: border-box;
  156. }
  157. button {
  158. background-color: blue;
  159. color: white;
  160. padding: 14px 20px;
  161. margin-top: 20px;
  162. border: none;
  163. cursor: pointer;
  164. width: 100%;
  165. }
  166. button:hover {
  167. opacity: 0.8;
  168. }
  169. .login-detail {
  170. padding: 30px 16px 20px 16px;
  171. }
  172. .login-bg {
  173. display: none;
  174. position: fixed;
  175. z-index: 1;
  176. left: 0;
  177. top: 0;
  178. width: 100%;
  179. height: 100%;
  180. padding-top: 60px;
  181. }
  182. .login-form {
  183. background-color: black;
  184. color: white;
  185. width:300px;
  186. height: 300px;
  187. margin: 5% auto 15% 970px;
  188. border: 1px solid #305281;
  189. }
  190. .animateL {
  191. -webkit-animation: animatezoom 0.6s;
  192. animation: animatezoom 0.6s
  193. }
  194. @-webkit-keyframes animatezoom {
  195. from {-webkit-transform: scale(0)}
  196. to {-webkit-transform: scale(1)}
  197. }
  198. @keyframes animatezoom {
  199. from {transform: scale(0)}
  200. to {transform: scale(1)}
  201. }
  202. .signup{
  203. position: fixed;
  204. color: white;
  205. text-align: center;
  206. text-decoration: none;
  207. display: inline-block;
  208. font-size: 20px;
  209. left: 1120px;
  210. padding: 13px 15px 13px 15px;
  211. cursor: pointer;
  212. }
  213. .signup-detail {
  214. padding: 20px 16px 20px 16px;
  215. }
  216. .signup-bg {
  217. display: none;
  218. position: fixed;
  219. z-index: 1;
  220. left: 0;
  221. top: -25px;
  222. width: 100%;
  223. height: 100%;
  224. padding-top: 60px;
  225. }
  226. .signup-form {
  227. background-color: black;
  228. color: white;
  229. width:300px;
  230. height: 500px;
  231. margin: 2% auto 15% 970px;
  232. border: 1px solid #305281;
  233. }
  234. .animateS {
  235. -webkit-animation: animatezoom 0.6s;
  236. animation: animatezoom 0.6s
  237. }
  238. @-webkit-keyframes animatezoom {
  239. from {-webkit-transform: scale(0)}
  240. to {-webkit-transform: scale(1)}
  241. }
  242. @keyframes animatezoom {
  243. from {transform: scale(0)}
  244. to {transform: scale(1)}
  245. }
  246. a:hover{
  247. opacity: 0.8;
  248. }
  249. section{
  250. position: fixed;
  251. margin-top: 120px;
  252. margin-left: 10px;
  253. font-size: 33px;
  254. color: #330066;
  255. font-family: 'Lato', sans-serif;
  256. }
  257. .intro{
  258. position: fixed;
  259. font-size: 18.5px;
  260. padding-top: 15px;
  261. }
  262. @font-face {
  263. font-family: KaushanScript;
  264. src: url("KaushanScript.otf") format("opentype");
  265. }
  266. #tip{
  267. position: fixed;
  268. width: 85%;
  269. height: 70px;
  270. margin-top: 530px;
  271. margin-left: 7%;
  272. border-radius: 40px;
  273. background-color: rgba(0,0,0,0.5);
  274. text-align: center;
  275. color: #bfbfbf;
  276. font-size: 150%;
  277. padding-bottom:10px;
  278. font-family: KaushanScript;
  279. }
  280. footer{
  281. position: fixed;
  282. width: 100%;
  283. height: 40px;
  284. background-color: black;
  285. opacity: 0.6;
  286. left: 0px;
  287. top: 654.5px;
  288. font-family: 'Lato', sans-serif;
  289. }
  290. .f1{
  291. position: relative;
  292. font-size:15px;
  293. color: white;
  294. left: 1090px;
  295. padding: 10px 0px 0px 20px;
  296. }
  297.  
  298. ////////////////////////////////////// home.php ////////////////////
  299.  
  300. <!DOCTYPE html>
  301. <html>
  302. <head>
  303. <title>ISVP</title>
  304. <meta charset="UTF-8">
  305. <meta name="viewport" content="width = device-width, initial-scale = 1.0">
  306. <link rel="stylesheet" type="text/css" href="home.css" />
  307. <link rel="shortcut icon" href="stocks.ico" />
  308. </head>
  309. <body>
  310. <header id="main">
  311. <div class="nm">Intrinsic Stock Value Predictor</div>
  312. <a href="ISVP.php" class="user">LogOut</a>
  313. <div id="help" onclick="openNav()">
  314. <img class="hl" src="help.png" />
  315. <div class="ht">
  316. Help
  317. </div>
  318. </div>
  319. </header>
  320. <div id="myNav" class="overlay">
  321. <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
  322. <div class="overlay-content">
  323. <ul>
  324. <li>Download the ISVP Program</li><br>
  325. <li>After downloading there will be a readMe file which will explain how to excute the program</li><br>
  326. <li>To understand the output or the graphical representaion of the stock predictor please refer to link below<a href="https://www.youtube.com" target="_black">How to interpret ISVP result</a></li><br>
  327. <li>For any queries feel free to contact us, E-mail Id : isvp@gmail.com</li>
  328. </ul>
  329. <p id="asap">We will get back to you as soon as possible.</p>
  330. </div>
  331. </div>
  332. <script>
  333. function openNav() {
  334. document.getElementById("myNav").style.height = "45%";
  335. }
  336.  
  337. function closeNav() {
  338. document.getElementById("myNav").style.height = "0%";
  339. }
  340. </script>
  341. <div class="about1">
  342. <p id="hd">State of the Art Algorithmic Prediction</p>
  343. <p id="bd">Intrinsic Stock Value Predictor provides a financial<br>service that utilizes an advanced self-learning algorithm<br>to analyze, model and predict the stock market.<br><br>Our program uses algorithmic prediction looking<br>for unique market opportunities.</p>
  344. </div>
  345. <div class="about2">
  346. <p id="hd">Solutions for Private and Institutional Investors</p>
  347. <p id="bd">Traders utilize this program as a tool to enhance portfolio performance, verify their own analysis and act on market opportunities faster.</p>
  348. </div>
  349. <div class="inst">
  350. Download ISVP to use stock prediction program. For any queries or question refere to HELP. Feel free to contact us at isvp@gmail.com, we will be available 24x7. We will get back to you as soon as possible.
  351. </div>
  352.  
  353. <div>
  354. <form action="download.php">
  355. <button type="submit" class="down">Download ISVP</button>
  356. </form>
  357. </div>
  358.  
  359. <div class="slideshow-container">
  360. <div class="mySlides fade">
  361. <p>Stocks: Let money make money for you.</p>
  362. </div>
  363. <div class="mySlides fade">
  364. <p>Never depend on the single income. Make investments to create a second source.</p>
  365. </div>
  366. <div class="mySlides fade">
  367. <p>The stock market is a device for transferring money from the impatient to the patient.</p>
  368. </div>
  369. <div class="mySlides fade">
  370. <p>The key of making money in stocks is not to get scared out them.</p>
  371. </div>
  372. </div>
  373. <div style="text-align:center">
  374. <span class="dot"></span>
  375. <span class="dot"></span>
  376. <span class="dot"></span>
  377. <span class="dot"></span>
  378. </div>
  379. <script>
  380. var slideIndex = 0;
  381. showSlides();
  382.  
  383. function showSlides() {
  384. var i;
  385. var slides = document.getElementsByClassName("mySlides");
  386. var dots = document.getElementsByClassName("dot");
  387. for (i = 0; i < slides.length; i++) {
  388. slides[i].style.display = "none";
  389. }
  390. slideIndex++;
  391. if (slideIndex> slides.length) {slideIndex = 1}
  392. for (i = 0; i < dots.length; i++) {
  393. dots[i].className = dots[i].className.replace(" active", "");
  394. }
  395. slides[slideIndex-1].style.display = "block";
  396. dots[slideIndex-1].className += " active";
  397. setTimeout(showSlides, 4000);
  398. }
  399. </script>
  400.  
  401.  
  402. <footer>
  403. <div class="f1">&copy 2017 Intrinsic Stock Value Predictor</div>
  404. </footer>
  405. </body>
  406. </html>
  407. //////////////////////////// home.css///////////////////////
  408. body{
  409. background-color: #666666;
  410. }
  411. header{
  412. position:fixed;
  413. width: 100%;
  414. height: 50px;
  415. background-color: black;
  416. top:0px;
  417. left: 0px;
  418. }
  419. .nm{
  420. position: fixed;
  421. color: white;
  422. float: left;
  423. text-align: left;
  424. font-size: 30px;
  425. margin: 8px 0px 0px 20px;
  426. }
  427. #help{
  428. position: fixed;
  429. color: white;
  430. text-align: center;
  431. text-decoration: none;
  432. display: inline-block;
  433. font-size: 20px;
  434. left: 1120px;
  435. padding: 13px 15px 13px 15px;
  436. cursor: pointer;
  437. }
  438. .hl{
  439. position: relative;
  440. }
  441. .ht{
  442. position: relative;
  443. top: -35px;
  444. left: 40px;
  445. }
  446. .user{
  447. position: fixed;
  448. border-left: 3px solid white;
  449. color: white;
  450. text-align: center;
  451. text-decoration: none;
  452. display: inline-block;
  453. font-size: 20px;
  454. left: 1240px;
  455. padding: 13px 40px 13px 30px;
  456. cursor: pointer;
  457. }
  458. body {
  459. margin: 0;
  460. font-family: 'Lato', sans-serif;
  461. }
  462.  
  463. .overlay {
  464. height: 0%;
  465. width: 100%;
  466. position: fixed;
  467. z-index: 1;
  468. top: 0;
  469. left: 0;
  470. background-color: rgb(0,0,0);
  471. background-color: rgba(0,0,0, 0.9);
  472. overflow-y: hidden;
  473. transition: 0.5s;
  474. }
  475.  
  476. .overlay-content {
  477. position: relative;
  478. top: 5%;
  479. width: 100%;
  480. color: white;
  481. text-align: left;
  482. margin-top: 30px;
  483. }
  484.  
  485. .overlay a {
  486. padding: 8px;
  487. text-decoration: none;
  488. font-size: 36px;
  489. color: #818181;
  490. display: block;
  491. transition: 0.3s;
  492. }
  493.  
  494. .overlay a:hover, .overlay a:focus {
  495. color: #f1f1f1;
  496. }
  497.  
  498. .overlay .closebtn {
  499. position: absolute;
  500. top: 20px;
  501. right: 45px;
  502. font-size: 60px;
  503. }
  504. #asap{
  505. margin-left: 51px;
  506. }
  507. .about1{
  508. position: fixed;
  509. width: 45%;
  510. height: 40%;
  511. margin-top: 70px;
  512. margin-left: 4%;
  513. box-shadow: 0px 0px 12px;
  514. text-align: center;
  515. background-color: #e6e6e6;
  516. }
  517. .about2{
  518. position: fixed;
  519. width: 45%;
  520. height: 40%;
  521. margin-top: 70px;
  522. margin-left: 51%;
  523. box-shadow: 0px 0px 12px;
  524. text-align: center;
  525. background-color: #e6e6e6;
  526. }
  527. #hd{
  528. font-size: 30px;
  529. color: #4d4d4d;
  530. }
  531. #bd{
  532. font-size: 20px;
  533. padding-top: 5px;
  534. }
  535. .inst{
  536. position: fixed;
  537. width: 91.9%;
  538. height: 12%;
  539. margin-top: 400px;
  540. margin-left: 4%;
  541. box-shadow: 0px 0px 12px;
  542. padding: 15px;
  543. font-size: 20px;
  544. color: #1a1a1a;
  545. background-color: #e6e6e6;
  546. }
  547.  
  548. .down{
  549. position: fixed;
  550. background-color: green;
  551. color: white;
  552. border: 1px solid green;
  553. width:250px;
  554. height: 50px;
  555. border-radius: 40px;
  556. font-size:30px;
  557. cursor: pointer;
  558. font-family: Times;
  559. margin-top: 540px;
  560. margin-left: 75%;
  561. }
  562. * {box-sizing:border-box}
  563. .mySlides {display:none}
  564.  
  565. @font-face {
  566. font-family: KaushanScript;
  567. src: url("KaushanScript.otf") format("opentype");
  568. }
  569. .slideshow-container {
  570. position: fixed;
  571. width: 60%;
  572. margin-top: 530px;
  573. margin-left: 5%;
  574. border-radius: 40px;
  575. background-color: rgba(0,0,0,0.9);
  576. text-align: center;
  577. color: white;
  578. font-size: 20px;
  579. font-family: KaushanScript;
  580. }
  581. .dot {
  582. height: 13px;
  583. width: 13px;
  584. margin: 0 2px;
  585. background-color: #bbb;
  586. border-radius: 50%;
  587. display: inline-block;
  588. transition: background-color 0.6s ease;
  589. }
  590.  
  591. .active {
  592. background-color: #717171;
  593. }
  594. .fade {
  595. -webkit-animation-name: fade;
  596. -webkit-animation-duration: 1.5s;
  597. animation-name: fade;
  598. animation-duration: 1.5s;
  599. }
  600. @-webkit-keyframes fade {
  601. from {opacity: .4}
  602. to {opacity: 1}
  603. }
  604. @keyframes fade {
  605. from {opacity: .4}
  606. to {opacity: 1}
  607. }
  608.  
  609. footer{
  610. position: fixed;
  611. width: 100%;
  612. height: 40px;
  613. background-color: black;
  614. left: 0px;
  615. top: 654.5px;
  616. }
  617. .f1{
  618. position: relative;
  619. font-size:15px;
  620. color: white;
  621. left: 1090px;
  622. padding: 10px 0px 0px 20px;
  623. }
  624. /////////////////////////////////////functions.php////////////////////////////
  625.  
  626. <?php
  627. session_start();
  628.  
  629. $host ='localhost';
  630. $user = 'root';
  631. $pass = '';
  632. $db = 'authentication';
  633.  
  634. $con = mysqli_connect($host, $user, $pass, $db);
  635.  
  636. function getUserData($id){
  637. $array = array();
  638. $q = mysqli_query($con, "SELECT * FROM 'users' WHERE 'id' ='$id'");
  639. while ($r = mysqli_fetch_assoc($con,$q)) {
  640. $array['id'] = $r['id'];
  641. $array['username'] = $r['username'];
  642. $array['password'] = $r['password'];
  643. $array['email'] = $r['email'];
  644. $array['cont_num'] = $r['cont_num'];
  645. }
  646. return $array;
  647. }
  648.  
  649. function getId($username){
  650. $q = mysqli_query($con, "SELECT * FROM 'users' WHERE 'username' ='$username'");
  651. while ($r = mysqli_fetch_assoc($con,$q)) {
  652. return $r['id'];
  653. }
  654. }
  655.  
  656. ?>
  657.  
  658. //////////////////////////login.php/////////////////////////////////////////
  659.  
  660. <?php
  661. session_start();
  662.  
  663. $host ='localhost';
  664. $user = 'root';
  665. $pass = '';
  666. $db = 'authentication';
  667.  
  668. $con = mysqli_connect($host, $user, $pass, $db);
  669.  
  670. if (isset($_POST['login_btn'])){
  671. $username = mysqli_real_escape_string($con,$_POST['username']);
  672. $password = mysqli_real_escape_string($con,$_POST['password']);
  673.  
  674. $password = md5($password);
  675. $sql = "SELECT * FROM users WHERE username = '$username' AND password = '$password'";
  676. $result = mysqli_query($con, $sql);
  677.  
  678. if (mysqli_num_rows($result) == 1) {
  679. header("location: home.php");
  680. }else{
  681. header("location: error.php");
  682. }
  683. }
  684. ?>
  685. /////////////////////////////////////////signup.php/////////////////////////
  686.  
  687. <?php
  688. session_start();
  689.  
  690. $host ='localhost';
  691. $user = 'root';
  692. $pass = '';
  693. $db = 'authentication';
  694.  
  695. $con = mysqli_connect($host, $user, $pass, $db);
  696.  
  697. if (isset($_POST['sign_btn'])){
  698. /*$username = mysqli_real_escape_string($con, $_POST['username']);
  699. $password = mysqli_real_escape_string($con, $_POST['password']);
  700. $cpassword = mysqli_real_escape_string($con, $_POST['cpassword']);
  701. $email = mysqli_real_escape_string($con, $_POST['email']);
  702. $cont_num = mysqli_real_escape_string($con, $_POST['cont_num']);*/
  703.  
  704. $username = $_POST['username'];
  705. $password = $_POST['password'];
  706. $cpassword = $_POST['cpassword'];
  707. $email = $_POST['email'];
  708. $cont_num = $_POST['cont_num'];
  709.  
  710. $password = md5($password);
  711. $sql = "INSERT INTO users(username, password, email, cont_num) VALUES('$username', '$password', '$email', '$cont_num')";
  712. mysqli_query($con, $sql);
  713. header("location: home.php");
  714. }
  715. ?>
  716.  
  717. /////////////////////////////////error.php////////////////////////
  718.  
  719. <?php
  720. session_start();
  721. ?>
  722. <!DOCTYPE html>
  723. <html>
  724. <head>
  725. <title>ISVP</title>
  726. <meta charset="UTF-8">
  727. <meta name="viewport" content="width = device-width, initial-scale = 1.0">
  728. <link rel="stylesheet" type="text/css" href="home.css" />
  729. <link rel="shortcut icon" href="stocks.ico" />
  730. <style type="text/css">
  731. header{
  732. position:relative;
  733. width: 100%;
  734. height: 50px;
  735. background-color: black;
  736. top:0px;
  737. left: 0px;
  738. font-family: Times;
  739. }
  740. .nm{
  741. position: relative;
  742. color: white;
  743. float: left;
  744. text-align: left;
  745. font-size: 30px;
  746. margin: 8px 0px 0px 20px;
  747. }
  748. section{
  749. position: relative;
  750. width: 100%;
  751. height: 610px;
  752. background-color: black;
  753. opacity: 0.6;
  754. }
  755. footer{
  756. position: fixed;
  757. width: 100%;
  758. height: 45px;
  759. background-color: black;
  760. left: 0px;
  761. }
  762. .f1{
  763. position: relative;
  764. font-size:15px;
  765. color: white;
  766. float: right;
  767. left: 0px;
  768. padding: 10px 0px 0px 20px;
  769. margin-right:10px;
  770. }
  771. .txt{
  772. position: absolute;
  773. color: white;
  774. width: 100%;
  775. top: 20%;
  776. text-align: center;
  777. font-size: 30px;
  778. font-family: Times;
  779. }
  780. button{
  781. background-color: black;
  782. color: white;
  783. border: 1px solid black;
  784. border-color:black;
  785. width:100px;
  786. height: 50px;
  787. font-size:30px;
  788. cursor: pointer;
  789. font-family: Times;
  790. }
  791. button:hover {
  792. box-shadow: 0 12px 16px 0 rgba(255,255,255,0.24),0 17px 50px 0 rgba(255,255,255,0.19);
  793. }
  794. #l1{
  795. position: fixed;
  796. left: 31.5%;
  797. top: 39%;
  798. }
  799. #l2{
  800. position: fixed;
  801. left: 37.5%;
  802. top: 42%;
  803. }
  804. #l3{
  805. position: fixed;
  806. left: 46%;
  807. top: 39%;
  808. }
  809. </style>
  810. </head>
  811. <body>
  812. <header>
  813. <div class="nm">Intrinsic Stock Value Predictor</div>
  814. <a href="ISVP.php" class="user">Return</a>
  815. </header>
  816. <section></section>
  817. <div class="txt">
  818. <p>You have entered Invalid username or password</p>
  819. <p>Please entered valid username or password</p>
  820. <p id="l1">Click </p><form id="l2" action="ISVP.php"><button>return</button></form><p id="l3"> to go back to main page!!</p>
  821. </div>
  822. <footer>
  823. <div class="f1">&copy 2017 Intrinsic Stock Value Predictor</div>
  824. </footer>
  825. </body>
  826. </html>
  827. //////////////////////////DONE/////////////////////////////
Add Comment
Please, Sign In to add comment