/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
69.2.1 by galaxyAbstractor
Replaced admin model
1
					<div class="span9">
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
2
						
3
						<div class="span9" id="content">
4
							<h2>Add example</h2>
5
							<?php 
6
								echo form_open(base_url().'admin/addexample');
7
			                                   			echo form_label('Example name', 'example');
8
			                                   			echo form_input(array('name' => 'example', 'required' => 'required'));
9
			                                   			echo form_label('Description', 'description');
23.1.2 by galaxyAbstractor
Fixed database stuff, added files to database.
10
			                                   			echo form_input(array('name' => 'description', 'required' => 'required'));
11
			                                   			echo form_hidden('cid',$cid); 
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
12
			                                   			echo form_hidden('categoryName',$categoryName); 
69.2.1 by galaxyAbstractor
Replaced admin model
13
			                                   			echo form_hidden('subCategoryName',$subCategoryName); 
14
			                                   			echo "<br>";
20.1.1 by galaxyAbstractor
* Added an simple admin panel to the codeviewer-cmssy stuff
15
			                                   			echo form_submit(array('name' => 'submit', 'value' => 'Add example', "class" => "btn btn-primary")); 
16
								echo form_close(); 
17
18
19
							 ?>
20
								
21
							</form>
22
						
23
						</div>
24
					</div>
25
					
26
				</div>
27
			</div>
28
29
		</div>
30
	</div>
31
</body>
32
33
</html>
34