This commit is contained in:
Joey Kimsey
2024-12-02 17:43:55 -05:00
parent 113499254b
commit de5530b1e3
95 changed files with 3192 additions and 509 deletions

55
app/views/hire.html Normal file
View File

@ -0,0 +1,55 @@
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Interested in hiring me?</h1>
<h3>
<span class="label label-primary">Open To</span> Freelance / Limited Contract Work
</h3>
<h3>
<span class="label label-success">Actively Seeking</span> Long-Term Contract Work
</h3>
<h3>
<span class="label label-success">Actively Seeking</span> Salaried Positions
</h3>
<h3>Disclaimer</h3>
<p>I am a full-stack developer but I am generally more capable at backend work. If your project is requires complex design elements or revisions, I may not be the right fit for your needs.</p>
<h3>Pricing</h3>
<p>When it comes to this industry; level-of-effort is the key to everything.
With that in mind, it can be challenging to reliably quote a rate for my time.
For most purposes my rate is $75/hour with a two hour minimum. With larger or repeat projects, compensation is more flexible.</p>
<form action="" method="post" class="form-horizontal">
<h3>Contact</h3>
<p>For privacy reasons, I do not make my personal contact details publicly available. In order to schedule a call or meeting, please connect with me on LinkedIn or use the contact form below.</p>
<p>I am generally able to respond to requests within 24 hours.</p>
<fieldset>
<div class="form-group">
<label for="name" class="col-lg-1 control-label">Name:</label>
<div class="col-lg-2">
<input class="form-control" type="text" name="name" id="name">
</div>
</div>
<div class="form-group">
<label for="contactEmail" class="col-lg-1 control-label">E-mail:</label>
<div class="col-lg-2">
<input class="form-control" type="text" name="contactEmail" id="contactEmail">
</div>
</div>
<div class="form-group">
<label for="details" class="col-lg-3 control-label">Details:<br> (max:2000 characters)</label>
<div class="col-lg-6">
<textarea class="form-control" name="details" maxlength="2000" rows="10" cols="50" id="details"></textarea>
</div>
</div>
</fieldset>
<input type="hidden" name="token" value="{TOKEN}">
<button name="submit" value="submit" type="submit" class="btn btn-lg btn-primary center-block">Submit</button><br>
</form>
</div>
</div>
</div>