mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 18:28:52 +00:00
34 lines
833 B
HTML
34 lines
833 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" href="css/app.css" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<div id="container">
|
|
<div id="header">
|
|
<img id="logo" src="img/fleeca.png"/>
|
|
</div>
|
|
<div id="welcome-text">
|
|
Bonjour, <br/>
|
|
Merci d'utiliser nos bornes Fleeca Bank
|
|
</div>
|
|
<div id="menu">
|
|
<div>
|
|
<input type="number" id="deposit_amount"/>
|
|
<button id="deposit_btn">Déposer</button>
|
|
</div>
|
|
<br><br>
|
|
<div>
|
|
<input type="number" id="withdraw_amount"/>
|
|
<button id="withdraw_btn">Retirer</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
|
<script src="nui://game/ui/jquery.js" type="text/javascript"></script>
|
|
<script src="scripts/app.js"></script>
|
|
|
|
</body>
|
|
</html> |