salvagedb_web/templates/details.html
Vlad 914f7d96fc fix: add page titles for all templates
- Added descriptive titles for all pages

- index.html: Buying a Used Car? Check it!

- database.html: Salvage Vehicles Database

- search.html: Vehicle History Check

- privacy.html: Privacy Policy

- decodevin.html: Decode VIN Number

- details.html: Vehicle Details
2025-05-02 12:42:41 +03:00

87 lines
3.4 KiB
HTML

{% extends "head.html" %}
{% block title %}Vehicle Details{% endblock %}
{% 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">
<div class="col-md-6 mb-4">
<div class="card">
<div class="card-header">
<h2 class="h4 mb-0">Vehicle Details</h2>
</div>
<div class="card-body">
<table class="table table-striped">
<tbody>
<tr>
<th scope="row">Make</th>
<td>{{det[0][1]}}</td>
</tr>
<tr>
<th scope="row">Model</th>
<td>{{det[0][2]}}</td>
</tr>
<tr>
<th scope="row">Year</th>
<td>{{det[0][3]}}</td>
</tr>
<tr>
<th scope="row">Body Style</th>
<td>{{det[0][4]}}</td>
</tr>
<tr>
<th scope="row">Engine</th>
<td>{{det[0][5]}}</td>
</tr>
<tr>
<th scope="row">Cylinders</th>
<td>{{det[0][6]}}</td>
</tr>
<tr>
<th scope="row">Drive</th>
<td>{{det[0][7]}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<div class="card-header">
<h2 class="h4 mb-0">Search salvage history?</h2>
</div>
<div class="card-body">
<form name="search_bar" id="search_bar" action="/search" method="post">
<div class="input-group">
<input id="make_model" class="form-control" name="q"
value="{{vin}}" autocomplete="off" spellcheck="false" type="text"
placeholder="Enter VIN number">
<button class="g-recaptcha btn btn-primary" data-sitekey="{{capcha_site}}"
id="go_button" data-callback='onSubmit' data-action='submit'>Search</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<script>
function onSubmit(token) {
document.getElementById("search_bar").submit();
}
</script>
{% endblock %}