Files
esx_core-esx-framework/html/cs_index.html
T
rex2630 133f211906 Added czech locale + Minor changes (#62)
* Fixed upper case

* Added czech locale

* Update fxmanifest.lua

* Minor cleanup

* Added czech UI

* Fixed name
2020-02-21 10:15:53 +01:00

23 lines
826 B
HTML

<html>
<head>
<script src="nui://game/ui/jquery.js" type="text/javascript"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="dialog">
<form id="register">
<h1>Register</h1>
<input id="firstname" type="text" placeholder="Křestní jméno"><br>
<input id="lastname" type="text" placeholder="Příjmení"><br>
<input id="dateofbirth" type="text" placeholder="Datum narození (YYYY-MM-DD)"><br>
<input id="height" type="text" placeholder="Výška (140-200 cm)"><br><center>
<input type="radio" name="sex" value="m" checked>Male
<input type="radio" name="sex" value="ž">Female<br></center>
<button id="submit" type="submit">Vytvořit</button>
</form>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>