-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
144 lines (100 loc) · 3.95 KB
/
index.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>bussines online loan</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1><img src="https://www.libertybank.ge/m/i/logo-en@2x.png" alt=""></h1>
</header>
<p>apply a simple application and get an answer in 5 minutes</p>
<h6 class="title">basics</h6>
<form enctype="multipart/form-data" id ="#">
<div >
<label for="amount"> how much funding do you think you may need?</label>
<input class ="formfild" type="number" name="age" id="amount" min="50" max="25000" step="1" required>
<div>
<div class="formgroup">
<label for="selectid">how soon do you need the money?</label>
<select name="select" id="selectid" >
<option value="24hour">within 24 hours</option>
<option value="1-3day">within 1 day-3 days</option>
<option value="7day">within 7 days</option>
<option value="moreThanWeek">more than a week</option>
</select>
</div>
<div class ="formgroup">
<label for="description">how will you use the loan?</label>
<textarea name="description" id="description" cols="50" rows="7" placeholder="use this place to describe the purpose of your loan to the best of your ability."></textarea>
</div>
<div class="formgroup">
<label for="nameid">first name </label>
<input class ="formfild" type="text " name="name" id="nameid" maxlength="100" required>
</div>
<div class="formgroup">
<label for="lastname">last name </label>
<input class ="formfild" type="text " name="name" id="lastname" maxlength="100" required>
</div>
<div >
<label for="id"> ID number </label>
<input class ="formfild" type="name" name="id" id="id" maxlength="11" required >
<div>
<div class="formgroup">
<label for="birthdateid">birth date</label>
<input type="date" name ="birthdate" id="birthdateid" >
</div>
<div class=gender>
<span class="formgroup">
<label for="maleId">male</label>
<input type="radio" name="radio" id="maleId" checked >
</span>
<span class ="formgroup">
<label for="femaleId">female</label>
<input type="radio" name="radio" id="femaleId">
</span>
</div>
<div class="formgroup">
<label for="emaiid">Your Email Address</label>
<input class ="formfild" type="email" name="email" id="emailid" required>
</div>
<div class="formgroup">
<label for="receiveemailid">do you want to receive email?</label>
<input class ="formfild" type="checkbox" name="receiveemailid" id="receiveemailid">
</div>
<div class="formgroup">
<label for="mobileid">mob</label>
<input class ="formfild" type="tel" name="mobile" id="mobileid">
</div>
<div class="formgroup">
<label for="selectid">How did you hear about us?</label>
<select class ="formfild" name="select" id="selectid">
<option value="tv">tv ad</option>
<option value="int">internet</option>
<option value="papers">news papers</option>
<option value="other">other</option>
</select>
</div>
<div class= "formgroup">
<label for="family">are you married?</label>
<input class ="formfild" type="checkbox" name="family" id="petsid">
</div>
<div class="formgroup">
<label for="fileid">uploadfile</label>
<input type="file" name="file" id="fileid" >
</div >
<div class="but">
<button type="submit">submit </button>
<button type="reset"> reset</button>
</div>
<nav>
<button type="button" class="btn btn-primary"> <a href="businessInfo.html" > continue</a></button>
</nav>
</form>
<script src="index.js"></script>
</body>
</html>