-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·153 lines (123 loc) · 4.84 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
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>ConsultantCalc</title>
<meta name="description" content="A simple calculator to help consultants establish hourly, daily, and yearly rates.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='stylesheet' href='http://fonts.googleapis.com/css?family=Share+Tech+Mono' type='text/css'>
<link rel="stylesheet" href="assets/css/plugins/bootstrap.css">
<link rel="stylesheet" href="assets/css/local/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="span6">
<div class="hero-unit">
<h1>ConsultantCalc</h1>
<p class="hidden-phone">A simple calculator to help consultants establish hourly, daily, and yearly rates.</p>
</div>
<div class="row">
<div class="span3">
<form class="form-horizontal">
<fieldset class="hours-per-day-group">
<legend>Hours Per Day</legend>
<div class="control-group">
<label class="control-label" for="hoursPerDay">Average Hours</label>
<div class="controls">
<input type="number" class="input-mini" id="hoursPerDay" value="8" placeholder="8" required>
</div>
</div>
</fieldset>
<fieldset class="days-per-year-group">
<legend>Billable Days a Year</legend>
<div class="control-group">
<label class="control-label" for="businessDays">Business Days</label>
<div class="controls">
<input type="number" class="input-mini" id="businessDays" value="251" placeholder="251" required>
</div>
</div>
<div class="control-group">
<label class="control-label" for="vacationDays">Vacation Days</label>
<div class="controls">
<input type="number" class="input-mini" id="vacationDays" value="30" placeholder="30" required>
</div>
</div>
<div class="control-group">
<label class="control-label" for="totalDays">Total Days</label>
<div class="controls">
<input type="number" class="input-mini" id="totalDays" value="221" disabled>
</div>
</div>
</fieldset>
</div>
<div class="span3">
<fieldset id="incomeGroup" class="income-group">
<legend>Income</legend>
<label class="well current" title="calculate income based on desired hourly rate">
<span class="visually-hidden">calculate income based on desired hourly rate</span>
<input type="radio" name="incomeType" checked>
<div class="control-group">
<label class="control-label" for="hourlyRate">Hourly Rate</label>
<div class="controls">
<input
type="number"
id="hourlyRate"
value="75.00"
required
/>
</div>
</div>
</label>
<label class="well" title="calculate income based on desired daily rate">
<span class="visually-hidden">calculate income based on desired daily rate</span>
<input type="radio" name="incomeType">
<div class="control-group">
<label class="control-label" for="dailyRate">Daily Rate</label>
<div class="controls">
<input
type="number"
id="dailyRate"
value="600.00"
required
disabled
/>
</div>
</div>
</label>
<label class="well" title="calculate income based on desired yearly rate">
<span class="visually-hidden">calculate income based on desired yearly rate</span>
<input type="radio" name="incomeType">
<div class="control-group">
<label class="control-label" for="yearlyRate">Yearly Rate</label>
<div class="controls">
<input
type="number"
id="yearlyRate"
value="132600.00"
required
disabled
/>
</div>
</div>
</label>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="assets/js/plugins/jquery-1.8.3.min.js"><\/script>')</script>
<script type="text/javascript" src="assets/js/local/do.js"></script>
<script>
var _gaq=[['_setAccount','UA-36834242-1'],['_setDomainName', 'beautifuluniquesnowflake.com'],['_trackPageview']];
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)
}(document,'script'));
</script>
</body>
</html>