mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 09:18:53 +00:00
1bc9e5ede6
Co-Authored-By: benjaminbra <benjamin.brasseur85@gmail.com>
23 lines
811 B
HTML
23 lines
811 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="First name"><br>
|
|
<input id="lastname" type="text" placeholder="Last name"><br>
|
|
<input id="dateofbirth" type="text" placeholder="Date of Birth (YYYY-MM-DD)"><br>
|
|
<input id="height" type="text" placeholder="Height (140-200 cm)"><br><center>
|
|
<input type="radio" name="sex" value="m" checked>Male
|
|
<input type="radio" name="sex" value="f">Female<br></center>
|
|
<button id="submit" type="submit">Create</button>
|
|
</form>
|
|
</div>
|
|
<script src="script.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|