-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetToken.html
118 lines (114 loc) · 3.4 KB
/
getToken.html
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Sajilo Hospital | Token Form</title>
<script
src="https://kit.fontawesome.com/e5640549ae.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./css/getToken.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto&display=swap"
rel="stylesheet"
/>
<style>
* {
font-family: "Poppins", sans-serif;
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
html {
font-size: 62.5%;
/* background-color: #f2f4f7; */
}
body {
/* background-color: #f2f4f7; */
}
</style>
</head>
<body>
<section class="get-token">
<div class="getToken">
<h1 class="getToken__Header">Get Token</h1>
<form action="" class="form">
<div class="general_div">
<label for="name" class="general_label">Name</label>
<input
type="text"
name="name"
id="name"
placeholder="Name"
class="general_input"
/>
</div>
<div class="general_div">
<label for="email" class="general_label">Email Address</label>
<input
type="email"
name="email"
id="email"
placeholder="Email Address"
class="general_input"
/>
</div>
<div class="general_div">
<label for="hospitalName" class="general_label"
>Hospital Name</label
>
<input
type="text"
name="hospitalName"
id="hospitalName"
placeholder="Hospital Name"
class="general_input"
/>
</div>
<div class="general_div">
<label for="deparment" class="general_label">Department</label>
<select id="myselect" name="department" class="general_input">
<option value="birHospital">Bir Hospital</option>
<option value="sumeru">Sumeru</option>
<option value="alka">Alka</option>
<option value="patanHospital">Patan Hospital</option>
</select>
</div>
<div class="general_div">
<label for="amount" class="general_label">Amount</label>
<input
type="number"
name="amount"
id="amount"
placeholder="Amount"
class="general_input"
/>
</div>
<div class="general_div">
<label for="accountNumber" class="general_label"
>Hospital's Account Number</label
>
<input
type="text"
name="accountNumber"
id="accountNumber"
placeholder="Hospital's Account Number"
class="general_input"
/>
</div>
<button class="btn-token">Get Token</button>
</form>
</div>
</section>
<script src="./js/getToken.js"></script>
</body>
</html>