Initial styling

This commit is contained in:
ElPumpo
2018-04-15 14:37:47 +02:00
parent 20e0cabe87
commit 76e2637419
+19 -20
View File
@@ -1,24 +1,23 @@
<!DOCTYPE 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>
<img id="cursor" src="cursor.png">
<div class="dialog">
<form id="register">
<h1 id="" type="">Registration</h1>
<input id="firstname" type="text" placeholder="First Name (Start With Capital Letter)"><br>
<input id="lastname" type="text" placeholder="Last Name (Start With Capital Letter)"><br>
<input id="dateofbirth" type="text" placeholder="Date Of Birth (MM/DD/YYYY)"><br>
<input id="sex" type="text" placeholder="Sex (M or F)"><br>
<input id="height" type="text" placeholder="Height (48-96)"><br>
<button id="submit" type="submit">Create</button>
<form>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
<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>