Initial commit
This commit is contained in:
		
							
								
								
									
										
											BIN
										
									
								
								modules/notes/files/trash.gif
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								modules/notes/files/trash.gif
									
									
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							| 
		 After Width: | Height: | Size: 98 B  | 
							
								
								
									
										57
									
								
								modules/notes/tmpl/index.tmpl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										57
									
								
								modules/notes/tmpl/index.tmpl
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,57 @@
 | 
			
		||||
<? INC Header.tmpl ?>
 | 
			
		||||
 | 
			
		||||
<div class="container col-md-10 col-md-offset-1">
 | 
			
		||||
	<div class="panel panel-default">
 | 
			
		||||
		<div class="panel-heading">Notes · Add A Note</div>
 | 
			
		||||
			<div class="panel-body">
 | 
			
		||||
				<form class="form-horizontal" method="post" action="<? VAR URIPrefix TOP ?><? VAR ModPath ?>addnote">
 | 
			
		||||
				<? INC _csrf_check.tmpl ?>
 | 
			
		||||
 | 
			
		||||
				<div class="form-group">
 | 
			
		||||
					<label for="inputKey" class="col-sm-2 control-label">Key:</label>
 | 
			
		||||
						<div class="col-sm-10">
 | 
			
		||||
							<input type="text" class="form-control" id="inputKey" name="key" size="8">
 | 
			
		||||
						</div>
 | 
			
		||||
				</div>
 | 
			
		||||
 | 
			
		||||
				<div class="form-group">
 | 
			
		||||
					<label for="inputNote" class="col-sm-2 control-label">Note:</label>
 | 
			
		||||
						<div class="col-sm-10">
 | 
			
		||||
							<input type="text" class="form-control" id="inputNote" name="note" size="40">
 | 
			
		||||
						</div>
 | 
			
		||||
				</div>
 | 
			
		||||
 | 
			
		||||
				<? IF !NotesLoop ?>
 | 
			
		||||
					<div class="alert alert-warning">You have no notes to display.</div>
 | 
			
		||||
				<? ELSE ?>
 | 
			
		||||
 | 
			
		||||
				<table class="table table-bordered table-hover">
 | 
			
		||||
					<thead>
 | 
			
		||||
						<tr>
 | 
			
		||||
							<td>Key</td>
 | 
			
		||||
							<td>Note</td>
 | 
			
		||||
							<td>Action</td>
 | 
			
		||||
						</tr>
 | 
			
		||||
					</thead>
 | 
			
		||||
					<tbody>
 | 
			
		||||
						<? LOOP NotesLoop ?>
 | 
			
		||||
						<tr>
 | 
			
		||||
							<td><? VAR Key ?></td>
 | 
			
		||||
							<td><? VAR Note ?></td>
 | 
			
		||||
							<td><a href="<? VAR URIPrefix TOP ?><? VAR ModPath TOP ?>delnote?key=<? VAR Key ESC=URL,HTML ?>" class="btn btn-danger btn-xs">Delete</a></td>
 | 
			
		||||
						</tr>
 | 
			
		||||
						<? ENDLOOP ?>
 | 
			
		||||
					</tbody>
 | 
			
		||||
				</table>
 | 
			
		||||
				<? ENDIF ?>
 | 
			
		||||
				</div>
 | 
			
		||||
 | 
			
		||||
				<div class="panel-footer text-right">
 | 
			
		||||
					<input class="btn btn-danger" type="reset" value="Reset">
 | 
			
		||||
					<input class="btn btn-success" type="submit" name="add" value="Add Note"  />
 | 
			
		||||
				</div>
 | 
			
		||||
				</form>
 | 
			
		||||
	</div>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<? INC Footer.tmpl ?>
 | 
			
		||||
		Reference in New Issue
	
	Block a user