generated from Templates_CodeFirst/templateHtmlCss
parent
8d11ae96f8
commit
694ee8d152
@ -1,5 +0,0 @@
|
||||
[](https://codefirst.iut.uca.fr/lilian.breton/PHP_Project)
|
||||
|
||||
# PHP_Project
|
||||
|
||||
A simple template for a web page in html css.
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,15 @@
|
||||
body {
|
||||
flex: auto;
|
||||
align-content: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
input {
|
||||
margin-left: 5em;
|
||||
margin-top: 2em;
|
||||
}
|
||||
|
||||
button.valider {
|
||||
margin-left: 5em;
|
||||
margin-top: 2em;
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Ajouter une Liste</title>
|
||||
<link rel="stylesheet" href="../Style/bootstrap.css">
|
||||
<link rel="stylesheet" href="../Style/mycoolstyle.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<ul class="navbar">
|
||||
<li><button onclick="location.href='addList.html'" type="button" class="addList">Ajouter une Liste</button>
|
||||
<li><button onclick="location.href='addTask.html'" type="button" class="addTask">Ajouter une Tache</button>
|
||||
</ul>
|
||||
|
||||
<h1>Ajouter</h1>
|
||||
|
||||
<input type="text" id="name" name="name" placeholder="name">
|
||||
<br>
|
||||
<div>
|
||||
Liste privee ?
|
||||
<input type="checkbox" id="private" name="private">
|
||||
</div>
|
||||
<br>
|
||||
<button class="valider" onclick="location.href='page.html'">Valider</button>
|
||||
|
||||
</body>
|
@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Ajouter une Tache</title>
|
||||
<link rel="stylesheet" href="../Style/bootstrap.css">
|
||||
<link rel="stylesheet" href="../Style/mycoolstyle.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<ul class="navbar">
|
||||
<li><button onclick="location.href='addList.html'" type="button" class="addList">Ajouter une Liste</button>
|
||||
<li><button onclick="location.href='addTask.html'" type="button" class="addTask">Ajouter une Tache</button>
|
||||
</ul>
|
||||
|
||||
<h1>Ajouter</h1>
|
||||
|
||||
<input type="text" id="name" name="name" placeholder="name">
|
||||
<br>
|
||||
<input type="text" id="content" name="content" placeholder="content">
|
||||
<br>
|
||||
<button class="valider" onclick="location.href='page.html'">Valider</button>
|
||||
|
||||
</body>
|
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Connexion</title>
|
||||
<link rel="stylesheet" href="../Style/bootstrap.css">
|
||||
<link rel="stylesheet" href="../Style/connexion.css">
|
||||
<link rel="stylesheet" href="../Style/mycoolstyle.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<ul class="navbar">
|
||||
<li><button onclick="location.href='addList.html'" type="button" class="addList">Ajouter une Liste</button>
|
||||
<li><button onclick="location.href='addTask.html'" type="button" class="addTask">Ajouter une Tache</button>
|
||||
</ul>
|
||||
|
||||
<h1>Connexion</h1>
|
||||
|
||||
<input type="text" id="username" name="username" placeholder="username">
|
||||
<br>
|
||||
<input type="password" id="password" name="password" placeholder="password" >
|
||||
<br>
|
||||
<button class="valider" onclick="location.href='page.html'">Valider</button>
|
||||
|
||||
</body>
|
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Accueil</title>
|
||||
<link rel="stylesheet" href="../Style/bootstrap.css">
|
||||
<link rel="stylesheet" href="../Style/mycoolstyle.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- Navigation menu -->
|
||||
<ul class="navbar">
|
||||
<li><button onclick="location.href='addList.html'" type="button" class="addList">Ajouter une Liste</button>
|
||||
<li><button onclick="location.href='addTask.html'" type="button" class="addTask">Ajouter une Tache</button>
|
||||
</ul>
|
||||
|
||||
<!-- Main Content -->
|
||||
<h1>To Do List !</h1>
|
||||
|
||||
<button onclick="location.href='connexion.html'" type="button" class="connexion">Se connecter</button>
|
||||
|
||||
<!-- my footer -->
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,34 +0,0 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>PHP_Project - One incredible styled html page</title>
|
||||
<link rel="stylesheet" href="mycoolstyle.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- Navigation menu -->
|
||||
<ul class="navbar">
|
||||
<li><a href="https://codefirst.iut.uca.fr/home">Code#0</a>
|
||||
<li><a href="http://iut.uca.fr">IUT</a>
|
||||
<li><a href="https://neilyoungarchives.com/">Very good music</a>
|
||||
<li><a href="https://www.youtube.com/watch?v=CY5dTBhRxOA">Very good music too!</a>
|
||||
</ul>
|
||||
|
||||
<!-- Main Content -->
|
||||
<h1>PHP_Project is my first page, and it has got style!</h1>
|
||||
|
||||
<p>Welcome on this template html/css project
|
||||
|
||||
<p>Very simple, some links, some menu... make it your own
|
||||
…
|
||||
|
||||
<p>I have nothing more to say
|
||||
|
||||
<!-- my footer -->
|
||||
<address>Template made in 2022<br>
|
||||
with Code#0 <a href="https://codefirst.iut.uca.fr/home"><img src="images/CodeFirstLogo.png" alt="Code#0" align="middle" border="0" height="40px"/>
|
||||
</a></address>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in new issue