0.0.1
This commit is contained in:
43
resources/[esx_addons]/esx_garage/nui/ui.html
Normal file
43
resources/[esx_addons]/esx_garage/nui/ui.html
Normal file
@@ -0,0 +1,43 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>ESX Garage</title>
|
||||
<link rel="stylesheet" href="css/app.css" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="container" role="dialog" style="display:none;">
|
||||
<div id="header">
|
||||
<div class="title" id="garage-title">Garage</div>
|
||||
<ul role="tablist">
|
||||
<li data-page="garage" class="selected" role="tab">Garage</li>
|
||||
<li data-page="impounded" role="tab">Impounded</li>
|
||||
</ul>
|
||||
<img class="logo-left" src="./img/logo.png" alt="ESX logo"/>
|
||||
<button class="close" title="Close">×</button>
|
||||
</div>
|
||||
|
||||
<div id="menu">
|
||||
<div class="content" role="tabpanel">
|
||||
<div class="toolbar">
|
||||
<input id="search-garage" type="search" placeholder="Search by model or plate…" />
|
||||
</div>
|
||||
<h2 class="empty">No Vehicles Stored Here.</h2>
|
||||
<div class="vehicle-list"></div>
|
||||
</div>
|
||||
|
||||
<div class="impounded_content" role="tabpanel">
|
||||
<div class="toolbar">
|
||||
<input id="search-impounded" type="search" placeholder="Search by model or plate…" />
|
||||
</div>
|
||||
<h2 class="empty">No Impounded Vehicles.</h2>
|
||||
<div class="vehicle-list"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="nui://game/ui/jquery.js" type="text/javascript"></script>
|
||||
<script src="js/app.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user