This commit is contained in:
Joey Kimsey
2025-02-06 03:18:45 -05:00
parent a893698a13
commit 825d422d93
189 changed files with 2628 additions and 5839 deletions

View File

@ -0,0 +1,22 @@
<h2>Resume Entry Form</h2>
<form action="#" method="POST">
<label for="name">Company Name:</label><br>
<input type="text" id="name" name="name" required><br><br>
<label for="position">Position:</label><br>
<input type="text" id="position" name="position" required><br><br>
<label for="start">Start Month/Year:</label><br>
<input type="month" id="start" name="start" required><br><br>
<label for="end">End Month/Year:</label><br>
<input type="month" id="end" name="end" required><br><br>
<label for="details">Details:</label><br>
<textarea id="details" name="details" rows="20" cols="50" required></textarea><br><br>
<label for="details">Details ( No BS ):</label><br>
<textarea id="detailsNobs" name="detailsNobs" rows="20" cols="50" required></textarea><br><br>
<input type="submit" name="submit" value="Submit">
</form>

View File

@ -0,0 +1,22 @@
<h2>Edit Resume Position</h2>
<form action="#" method="POST">
<label for="name">Company Name:</label><br>
<input type="text" id="name" name="name" value="{name}" required><br><br>
<label for="position">Position:</label><br>
<input type="text" id="position" name="position" value="{position}" required><br><br>
<label for="start">Start Month/Year:</label><br>
<input type="month" id="start" name="start" value="{start}" required><br><br>
<label for="end">End Month/Year:</label><br>
<input type="month" id="end" name="end" value="{end}" required><br><br>
<label for="details">Details:</label><br>
<textarea id="details" name="details" rows="20" cols="50" required>{details}</textarea><br><br>
<label for="details">Details ( No BS ):</label><br>
<textarea id="detailsNobs" name="detailsNobs" rows="20" cols="50" required>{details_nobs}</textarea><br><br>
<input type="submit" name="submit" value="Submit">
</form>

View File

@ -0,0 +1,46 @@
<div class="context-main-bg context-main p-3">
<legend class="text-center">Resume Positions</legend>
<hr>
{ADMIN_BREADCRUMBS}
<form action="{ROOT_URL}admin/resume/delete" method="post">
<table class="table table-striped">
<thead>
<tr>
<th style="width: 30%">Name</th>
<th style="width: 20%">Position</th>
<th style="width: 10%">Start</th>
<th style="width: 10%">End</th>
<th style="width: 10%"></th>
<th style="width: 10%"></th>
<th style="width: 10%">
<INPUT type="checkbox" onchange="checkAll(this)" name="check.b" value="P_[]"/>
</th>
</tr>
</thead>
<tbody>
{LOOP}
<tr>
<td><a href="{ROOT_URL}admin/resume/view/{ID}" class="text-decoration-none">{name}</a></td>
<td>{position}</td>
<td>{prettyStart}</td>
<td>{prettyEnd}</td>
<td><a href="{ROOT_URL}admin/resume/edit/{ID}" class="btn btn-sm btn-warning" role="button"><i class="fa fa-fw fa-pencil"></i></a></td>
<td><a href="{ROOT_URL}admin/resume/delete/{ID}" class="btn btn-sm btn-danger" role="button"><i class="fa fa-fw fa-trash"></i></a></td>
<td>
<input type="checkbox" value="{ID}" name="P_[]">
</td>
</tr>
{/LOOP}
{ALT}
<tr>
<td colspan="7">
No results to show.
</td>
</tr>
{/ALT}
</tbody>
</table>
<a href="{ROOT_URL}admin/resume/create" class="btn btn-sm btn-primary" role="button">Create</a>
<button name="submit" value="submit" type="submit" class="btn btn-sm btn-danger"><i class="fa fa-fw fa-trash"></i></button>
</form>
</div>

View File

@ -0,0 +1,8 @@
<legend>Resume Position</legend>
<div class="resume-position">
<h3 class="resume-position-title">{name}</h3>
<p><b>{position}</b> from <i>{prettyStart}</i> to <i>{prettyEnd}</i></p>
<div class="well">
{details}
</div>
</div>