-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy patheval_estimation.html
160 lines (146 loc) · 5.21 KB
/
eval_estimation.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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Estimation-Lancer</title>
<link
href="https://fonts.googleapis.com/css?family=Ubuntu:400,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"/>
<link rel="stylesheet" href="styles/eval_estimation.css">
</head>
<body>
<!-- Name: James Chima
Slack UserName: @jamis -->
<div class="container-fluid">
<div class="row">
<div class="close-button text-center">
<span>
<i class="fa fa-times"></i>
</span>
</div>
<div class="back-button">
<span>
<i class="fa fa-chevron-left"></i>
</span>
</div>
<div class="header">
<p class="text-center">Create Estimate</p>
</div>
<div class="next-button">
<p class="text-center">NEXT</p>
</div>
</div>
</div>
<!--@Ezeko -->
<div id="word">
<h1>Evaluation</h1>
<h5>Please Input the required fields in the form below</h5><br>
</div>
<div class="container">
<div id="glac">
Glacier Fintech App<hr />
</div>
<hr />
<div id="bill">
<h3>Billing</h3>
<div>
<p>How long (in hours) will it take you to complete this project?</p>
<input type="text" name="estTime" placeholder="Hours" />
</div><br />
<div>
<p>How much (in hours) do you charge per hour?</p>
<input type="text" name="estPrice" placeholder="NGN 0.00" />
</div><br />
<div class="date">
<p>Project starts/ends</p>
<i class="fa fa-calendar"></i><input type="text" onfocus="(this.type='date')" name="estStartDate" placeholder=" Set start date" />
<i class="fa fa-calendar"></i><input type="text" onfocus="(this.type='date')" name="estEndDate" placeholder="Set end date" />
</div>
</div>
<!-- GitHub username: Tana00; Slack username: @Felicia11 -->
<hr />
<h3>Expenses</h3>
<div>
<p id="cost">
How much would it cost you to power your devices or equipment for this
project?
</p>
<input type="text" name="est1" id="est1" placeholder="NGN 0.00" />
</div><br />
<div>
<p id="sub">Are you subcontracting to anyone?</p>
<input
type="text"
name="est2"
id="est2"
placeholder="E.g. Illustrator, Consulting..."
/>
</div><br />
<div>
<p id="pay">How much would they be paid?</p>
<input type="text" name="est3" id="est3" placeholder="NGN 0.00" />
</div>
<!-- Slack Display Name: Akosworldwide, GitHub Username: Akosworldwide -->
<br>
<h3>Expertise</h3>
<div>
<p id="proj">How many similar projects have<br>you done before?</p>
<input type="text" name="exp1" id="exp1">
</div>
<br>
<div>
<p id="rate">Out of 5 how would you rate your<br>experience level in executing this<br>project?<p>
<input type="text" name="exp2" id="exp2"> /5
</div>
<hr />
<!-- Name: Mary Jonah
Slack UserName: @Mary_Jonah -->
<div id="currency">
Currency:<select>
<option>NGN</option>
<option>AED</option>
<option>AFN</option>
<option>ALL</option>
<option>AMD</option>
<option>ANG</option>
<option>AOA</option>
<option>ARS</option>
<option>AUD</option>
<option>AWG</option>
<option>AZN</option>
<option>BAM</option>
<option>BBD</option>
<option>BDT</option>
<option>BGN</option>
<option>BHD</option>
<option>BIF</option>
<option>BMD</option>
<option>BND</option>
<option>BOB</option>
<option>BRL</option>
<option>BSD</option>
<option>BSD</option>
<option>BTN</option>
<option>BWP</option>
<option>BYN</option>
<option>BZD</option>
<option>CAD</option>
<option>CDF</option>
<option>CHF</option>
<option>CLP</option>
<option>CNY</option>
<option>COP</option>
<option>CRC</option>
<option>CUC</option>
</select>
</div>
</div>
<div class="footer-next">
<button>NEXT</button></div>
</body>
</html>