mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 17:28:53 +00:00
26 lines
835 B
HTML
26 lines
835 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
|
|
<body>
|
|
<img id="cursor" src="cursor.png">
|
|
<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 (48-96)"><br><center>
|
|
<input id="male" type="radio" name="sex" value="male">Male
|
|
<input id="female" type="radio" name="sex" value="female">Female<br></center>
|
|
<button id="submit" type="submit">Create</button>
|
|
</form>
|
|
</div>
|
|
<script src="script.js" type="text/javascript"></script>
|
|
</body>
|
|
</html>
|