Difference between revisions of "Login.jsp for the last course"
From MyWiki
(Created page with "<source lang="php"> <!DOCTYPE html> <html> <head> <title>Chuck Severance's Resume Registry</title> <!-- bootstrap.php - this is HTML --> <!-- Latest compiled and minified CS...") |
(No difference)
|
Latest revision as of 21:57, 7 December 2018
<!DOCTYPE html> <html> <head> <title>Chuck Severance's Resume Registry</title> <!-- bootstrap.php - this is HTML --> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous"> <!-- Optional theme --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous"> </head> <body> <div class="container"> <h1>Chuck Severance's Resume Registry</h1> <p><a href="login.php">Please log in</a></p> <table border="1"> <tr><th>Name</th><th>Headline</th><tr> <tr><td> <a href="view.php?profile_id=1423">Mahmoud Elattar</a></td><td> Engineer</td></tr> <tr><td> <a href="view.php?profile_id=1424">Mahmoud Hassan</a></td><td> ubnwe</td></tr> <tr><td> <a href="view.php?profile_id=1426">Fadma Ennaji</a></td><td> Developer</td></tr> </table> <p> <b>Note:</b> Your implementation should retain data across multiple logout/login sessions. This sample implementation clears all its data periodically - which you should not do in your implementation. </p> </div> </body>