- index.html: Updated container to container-lg, improved search form structure, added modern spacing and alignment classes, enhanced form input and button styling - database.html: Updated table classes for better responsiveness, added table-hover and align-middle classes, improved pagination styling, added table-light class for header - search.html: Completely restructured layout, added card components for details and history, improved table responsiveness, enhanced mobile view with proper column sizing, added alert component for not found state - privacy.html: Completely restructured layout, added modern typography classes, improved readability with proper spacing, enhanced navigation with proper heading hierarchy, added card component for better content organization
58 lines
2.5 KiB
HTML
58 lines
2.5 KiB
HTML
{% extends "head.html" %}
|
|
|
|
{% block content %}
|
|
<div class="container-lg py-4">
|
|
<div class="p-5 mb-4 bg-light rounded-3">
|
|
<h1 class="display-4">Buying a Used Car? Check it!</h1>
|
|
<p class="lead">
|
|
<a href="https://www.salvagedb.com/" title="Salvagedb.com" rel="nofollow">Salvagedb.com</a> provides
|
|
information about salvage or junk vehicles; damage from hail, flood or fire; mileage discrepancies or
|
|
odometer rollback; and gray market vehicles. We do not claim that the car got in our databank has salvage
|
|
title, but the fact that it has been damaged for sure. Our site helps people avoid buying a damaged vehicle
|
|
in the past.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-8">
|
|
<form id="search_bar" action="/decode" method="post" class="mb-4">
|
|
<div class="card">
|
|
<div class="card-header text-center">
|
|
<h2 class="h4 mb-0">ENTER <a href="https://en.wikipedia.org/wiki/Vehicle_Identification_Number" target="_blank" class="text-decoration-none">VIN</a> OF YOUR CAR</h2>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="input-group">
|
|
<input type="text" id="vininput" name="q"
|
|
class="form-control"
|
|
autocomplete="off"
|
|
placeholder="Enter VIN number"
|
|
autofocus required
|
|
validate="length_between,17,17">
|
|
<button class="g-recaptcha btn btn-primary"
|
|
type="submit"
|
|
data-sitekey="{{capcha_site}}"
|
|
id="go_button"
|
|
data-callback='onSubmit'
|
|
data-action='submit'>Check It</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<h2 class="text-center mb-4">Over {{ cnt }} salvage vehicles added.</h2>
|
|
<div class="text-center">
|
|
<img src="static/vin-position1.gif" class="img-fluid" alt="VIN position diagram">
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
function onSubmit(token) {
|
|
document.getElementById("search_bar").submit();
|
|
}
|
|
</script>
|
|
|
|
{% endblock %}
|
|
|
|
|