38 lines
1018 B
HTML
Executable File
38 lines
1018 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Date Picker</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Sign Up</h1>
|
|
<div id="signupArea">
|
|
<h2>Name</h2>
|
|
<input>
|
|
<h2>Password</h2>
|
|
<input type="password">
|
|
<div>
|
|
<h2>Date of Birth</h2>
|
|
<button id="date">
|
|
<div></div>
|
|
<input type="checkbox">
|
|
<div id="datePicker">
|
|
<svg viewBox="0 0 350 166" >
|
|
<ellipse id="ellipse" cx="175" cy="83" rx="150" ry="73"
|
|
style="fill-opacity: 0;stroke:yellow;stroke-width:0.5" />
|
|
<image id="earth" height="15" width="15" href="earth.png"></image>
|
|
<image id="sun" x="105" y="68" height="30" width="30" href="sun.png"></image>
|
|
</svg>
|
|
</div>
|
|
</button>
|
|
</div>
|
|
<button onClick="window.location.reload()">SIGN UP</button>
|
|
</div>
|
|
|
|
<script src="logic.js"></script>
|
|
</body>
|
|
</html> |