new group creation
authorduong tam kien <tk@deveha.com>
Wed, 19 Jul 2017 17:03:40 +0200
changeset 123 6542f93cdc0d
parent 122 964633aa5d45
child 124 c77570164050
new group creation
design/_includes/nav.html
design/group-create.html
--- a/design/_includes/nav.html	Wed Jul 19 16:47:41 2017 +0200
+++ b/design/_includes/nav.html	Wed Jul 19 17:03:40 2017 +0200
@@ -28,6 +28,7 @@
 
 					<h6 class="dropdown-header small">autres groupes</h6>
 					<a class="dropdown-item" href="group.html">NextLEAP</a>
+					<a class="dropdown-item" href="group-create.html">Créer un nouveau groupe</a>
 
 					<div class="dropdown-divider"></div>
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/design/group-create.html	Wed Jul 19 17:03:40 2017 +0200
@@ -0,0 +1,32 @@
+---
+layout: default
+---
+
+{% include nav.html %}
+
+<div class="container">
+	<div class="row">
+	
+		<div class="col col-6 offset-md-3">
+			<h3>Créer un nouveau groupe</h3>
+
+			<form>
+				<div class="form-group">
+    			<label for="formGroupExampleInput">Nom du groupe</label>
+    			<input type="text" class="form-control" id="formGroupExampleInput" placeholder="">
+  			</div>
+  
+				<div class="form-group">
+    			<label for="formGroupExampleInput2">Description</label>
+    			<textarea class="form-control" id="formGroupExampleInput2" placeholder=""></textarea>
+  			</div>
+
+				<button type="submit" class="btn btn-primary">Créer</button>				
+
+			</form>
+
+
+		</div>
+	
+	</div>
+</div>