ADD : views

main
Lilian BRETON 2 years ago
parent 8d11ae96f8
commit 694ee8d152

@ -1,5 +0,0 @@
[![Build Status](https://codefirst.iut.uca.fr/api/badges/lilian.breton/PHP_Project/status.svg)](https://codefirst.iut.uca.fr/lilian.breton/PHP_Project)
# PHP_Project
A simple template for a web page in html css.

10878
Style/bootstrap.css vendored

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;
}

@ -2,8 +2,9 @@ body {
padding-left: 11em;
font-family: Georgia, 'Georgia', "Times New Roman",
Times, serif;
color: darksalmon;
background-color: rgb(39, 39, 84) }
color: red;
background-color: powderblue }
ul.navbar {
list-style-type: none;
padding: 0;
@ -12,14 +13,14 @@ body {
top: 2em;
left: 1em;
width: 9em }
li {
margin-bottom: 2em;
}
h1 {
font-family: Helvetica, Geneva, Arial,
SunSans-Regular, sans-serif }
ul.navbar li {
background: white;
margin: 0.5em 0;
padding: 0.3em;
border-right: 1em solid darksalmon }
SunSans-Regular, sans-serif;
text-align: center;
}
ul.navbar a {
text-decoration: none }
a:link {
@ -30,3 +31,15 @@ body {
margin-top: 1em;
padding-top: 1em;
border-top: thin dotted }
button.connexion {
padding: 0;
margin: 0;
position: absolute;
top: 1em;
right: 1em;
}
div.carouselExampleIndicators {
margin: auto;
}

@ -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
&hellip;
<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…
Cancel
Save