-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
192 lines (164 loc) · 7.23 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!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">
<link rel="stylesheet" href="css/style.css">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<!-- Font Awesome Here -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<title>Developer Application</title>
</head>
<body>
<!-- Starting From Here -->
<div class="wrapper" style="background-image: url('img/img2.jpg');">
<!-- Navbar Here -->
<nav>
<div class="nav-wrapper grey darken-4">
<a href="#" class="brand-logo center col s12">Developer Manager Application</a>
</div>
</nav>
<!-- Add Details Button -->
<div class="center-align addDetails">
<a class="modal-trigger" href="#modal1">
<button class="btn waves-effect waves-light grey" type="Submit">Add Developer <i
class="material-icons left">add</i></button>
</a>
</div>
<br>
<!-- sort button here -->
<div class="center-align sortDetails">
<div class="row">
<div class="input-field col s6 offset-s3 m6 offset-m3">
<select id="dropdown">
<option value="" disabled selected>Sort</option>
<option value="alpha">Alphabetically</option>
</select>
<label>Sort Developer</label>
</div>
</div>
</div>
<!-- Modal Structure -->
<div id="modal1" class="modal ">
<div class="modal-content">
<h4 class="center-align black-text ">Add Details</h4>
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<i class="material-icons prefix">account_circle</i>
<input placeholder="First Name" id="first_name" type="text" class="validate" value="">
<label for="first_name">First Name</label>
</div>
<div class="input-field col s6">
<i class="fas fa-envelope-open prefix"></i>
<input id="email" type="email" class="validate">
<label for="email">Email</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<i class="fas fa-poll-h prefix"></i>
<input placeholder="Designation" id="designation" type="text" class="validate" value="">
<label for="designation">Designation</label>
</div>
<!-- <div class="input-field col s6">
Customizable input
<i class="fas fa-plus-circle prefix"></i>
<div class="chips chips-placeholder" id="chip"></div>
</div> -->
<div class="input-field col s6">
<i class="fas fa-plus-circle prefix"></i>
<input placeholder="Enter Your Skills" id="skills" type="text" class="validate"
value="">
<label for="skills">Skills</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<i class="far fa-credit-card prefix"></i>
<input placeholder="Salary" id="salary" type="text" class="validate" value="">
<label for="salary">Salary</label>
</div>
</div>
<div class="row">
<div class="input-field col s6">
<i class="fab fa-linkedin prefix"></i>
<input placeholder="Linkedin" id="linkedin" type="text" class="validate" value="">
<label for="linkedin">Linkedin Account</label>
</div>
<div class="input-field col s6">
<i class="fab fa-github prefix"></i>
<input placeholder="Github" id="github" type="text" class="validate" value="">
<label for="github">github Account</label>
</div>
</div>
</form>
</div>
</div>
<div class="modal-footer foot grey">
<a href="#!" class="modal-close waves-effect waves-green btn-flat white-text text-darken-4"
id="addDetails">Add</a>
<a href="#!" class="modal-close waves-effect waves-green btn-flat white-text text-darken-4">Cancel</a>
</div>
</div>
<div class="container cards">
<div class="row" id="dev_cards">
<!-- adding DOM here -->
</div>
</div>
</div>
</body>
<!-- Compiled and minified JavaScript -->
<script src="https://code.jquery.com/jquery-3.4.0.min.js"
integrity="sha256-BJeo0qm959uMBGb65z40ejJYGSgR7REI4+CW1fNKwOg=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="scripts/uuid.js"></script>
<script src="scripts/app.js"></script>
<script>
//modal
$(document).ready(function () {
$('.modal').modal();
});
//chips
$('.chips').chips();
$('.chips-initial').chips({
data: [{
tag: 'Apple',
}, {
tag: 'Microsoft',
}, {
tag: 'Google',
}],
});
$('.chips-placeholder').chips({
placeholder: 'Add Skills',
secondaryPlaceholder: '+Tag',
});
$('.chips-autocomplete').chips({
autocompleteOptions: {
data: {
'Apple': null,
'Microsoft': null,
'Google': null
},
limit: Infinity,
minLength: 1
}
});
//parallax here
$(document).ready(function () {
$('.parallax').parallax();
});
// select options here
$(document).ready(function () {
$('select').formSelect();
});
</script>
</html>