Created
February 10, 2017 19:49
-
-
Save KOUISAmine/01e6bc9c4c34bc11f731fb0f8ecbeaf1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<?php | |
require 'connect.php'; | |
?> | |
<html lang = "eng"> | |
<head> | |
<meta charset = "UTF-8" /> | |
</head> | |
<body style="background-color: #DCDCDC"> | |
<center><h2>Création d'un formulaire de connexion en Php avec MySQLi / jQuery</h2></center> | |
<div id = "content"> | |
<center><h2>Je vous souhaite la bienvenue!</h2></center> | |
<center><a href = "index.php" style = "text-decoration:none;">Retour</a></center> | |
</div> | |
</body> | |
<script src = "jquery-3.1.1.js"></script> | |
<script src = "login.js"></script> | |
</html> | |
<style> | |
#content{ | |
background-color: #1E90FF; | |
width:340px; | |
height:110px; | |
margin: 50px auto; | |
padding:11px; | |
border-radius:2px; | |
-webkit-box-shadow:0px 0px 30px 3px #000; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment