/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 page</h2>
5
							<?php 
6
								echo form_open(base_url().'admin/addpage');
7
			                                   			echo form_label('Page name', 'page');
8
			                                   			echo form_input(array('name' => 'page', 'required' => 'required'));
9
			                                   			echo form_hidden('cid',$cid); 
10
			                                   			echo form_hidden('example',$example); 
11
			                                   			echo "<br>";
12
			                                   			echo form_submit(array('name' => 'submit', 'value' => 'Add page', "class" => "btn btn-primary")); 
13
								echo form_close(); 
14
15
16
							 ?>
17
								
18
							</form>
19
						
20
						</div>
21
					</div>
22
					
23
				</div>
24
			</div>
25
26
		</div>
27
	</div>
28
</body>
29
30
</html>
31