generated from Templates_CodeFirst/templateHtmlCss
parent
8d11ae96f8
commit
1565d29f77
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,45 @@
|
|||||||
|
body {
|
||||||
|
padding-left: 11em;
|
||||||
|
font-family: Georgia, 'Georgia', "Times New Roman",
|
||||||
|
Times, serif;
|
||||||
|
color: red;
|
||||||
|
background-color: powderblue }
|
||||||
|
|
||||||
|
ul.navbar {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
position: absolute;
|
||||||
|
top: 2em;
|
||||||
|
left: 1em;
|
||||||
|
width: 9em }
|
||||||
|
li {
|
||||||
|
margin-bottom: 2em;
|
||||||
|
}
|
||||||
|
h1 {
|
||||||
|
font-family: Helvetica, Geneva, Arial,
|
||||||
|
SunSans-Regular, sans-serif;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
ul.navbar a {
|
||||||
|
text-decoration: none }
|
||||||
|
a:link {
|
||||||
|
color: blue }
|
||||||
|
a:visited {
|
||||||
|
color: darkblue }
|
||||||
|
address {
|
||||||
|
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>
|
Loading…
Reference in new issue