-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpartner.html
101 lines (68 loc) · 2.55 KB
/
partner.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AASTU GEBETA</title>
<link rel="icon" href="./Resources/images/download.png">
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="stylesheet" href="./assets/css/css/all.css">
<link rel="stylesheet" href="./assets/css/dasher.css">
<link rel="stylesheet" href="./assets/css/hamburger.css">
</head>
<body>
<div class="container flex">
<div class="top">
<h2 class="title"> <a href="index.html"> AASTU GEBETA.</h2></a>
<div class="ham icon nav-icon-5">
<span></span>
<span></span>
<span></span>
</div>
</div>
</div>
<form>
<div class="partnerMain">
<div class="dasherForm">
Partner Register Form
</div>
<div class="input1 in">
<i class="fas fa-user-alt"></i>
<input type="text" name="" placeholder="Full Name" required id="userInput">
</div>
<div class="input3 in">
<i class="fas fa-phone-alt"></i>
<input type="tel" name="" id="phoneInput" pattern="[0-9]{3}-[0-9]{3}-[0-9]{4}" required placeholder="09xxx xxxxx" maxlength="13" minlength="13">
</div>
<div class="input4">
<span id="gender"> Gender</span>
<div class="gen">
<input type="radio" name="gender" id="genderInput1"> <span id="male"> Male<i class="fas fa-male"></i> </span>
<input type="radio" name="gender" id="genderInput2"> <span id="female">Female<i class="fas fa-female"></i> </span>
</div>
</div>
<div class="input6 in">
<i class="fas fa-mail-bulk"></i>
<input type="email" name="" id="emailInput" required placeholder="Email">
</div>
<div class="input5">
<span id="describe"> Description about your business. </span>
<textarea id="description"> </textarea>
</div>
<div class="input8">
<span id="cv">Attach CV here</span> <!--Find another word for CV-->
<div class="choose">
<input type="file" name="" required id="cvInput">
<button id="remove">Remove File</button>
</div>
</div>
<div class="rst">
<input type="submit" value="Submit" class="btn" title="Submit">
<input type="reset" value="Reset" class="btn">
</div>
</form>
</div>
<script src="./assets/js/ham.js"></script>
</body>
</html>