-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathl.html
More file actions
92 lines (74 loc) · 2.29 KB
/
Copy pathl.html
File metadata and controls
92 lines (74 loc) · 2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kundli Form</title>
<link rel="stylesheet" href="l.css" />
</head>
<body>
<div class="page">
<div class="card">
<h2>Enter Your Birth Details</h2>
<p>Get your personalized Kundli with accurate predictions.</p>
<form id="kundliForm">
<!-- NAME + GENDER -->
<div class="row">
<input type="text" name="name" placeholder="Your Name" required />
<select name="gender" required>
<option value="">Select Gender</option>
<option value="male">Male</option>
<option value="female">Female</option>
</select>
</div>
<!-- DATE -->
<div class="row">
<select name="day" required>
<option value="">Day</option>
</select>
<select name="month" required>
<option value="">Month</option>
</select>
<select name="year" required>
<option value="">Year</option>
</select>
</div>
<!-- TIME -->
<div class="row">
<select name="hour" required>
<option value="">Birth Hour</option>
</select>
<select name="minute" required>
<option value="">Birth Minute</option>
</select>
</div>
<!-- LOCATION -->
<div class="row location-row">
<!-- COUNTRY DROPDOWN -->
<select id="countrySelect" name="country" required>
<option value="">Select Country</option>
</select>
<!-- BIRTH PLACE INPUT -->
<div class="location-input-wrapper">
<input
type="text"
id="birthPlace"
placeholder="Birth Place"
autocomplete="off"
required
/>
<!-- SUGGESTION BOX -->
<div id="suggestionsBox" class="suggestions-box"></div>
</div>
</div>
<button type="submit" class="submit-btn">
Create Your Kundli
</button>
</form>
</div>
</div>
<!-- IMPORTANT: ORDER MATTERS -->
<script src="countries.js"></script>
<script src="l.js"></script>
</body>
</html>