-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
221 lines (218 loc) · 10.4 KB
/
Copy pathforms.html
File metadata and controls
221 lines (218 loc) · 10.4 KB
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Linkedin Forms</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<h3>Edit Intro</h3>
<form>
<div class="form-row">
<div class="form-group col-md-6">
<label for="First Name">First Name <span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<input type="text" class="form-control" id="First Name">
</div>
<div class="form-group col-md-6">
<label for="Last Name">Last Name <span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<input type="text" class="form-control" id="Last Name">
<div class="float-right">
<a href="#">Add new position</a>
</div>
</div>
</div>
<div class="form-group">
<label for="headline">Headline <span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<textarea class="form-control" id="textarea"></textarea>
</div>
<div class="form-group">
<label for="current position">Current Position</label>
<select class="custom-select" id="current position"></select>
<div class="float-right">
<a href="#">Add former name</a>
</div>
</div>
<div class="form-group">
<div class="custom-control custom-checkbox mr-sm-2">
<input class="custom-control-input" type="checkbox" id="customcontrolautosizing">
<label class="custom-control-label" for="customcontrolautosizing">
Show education in my intro
</label>
</div>
</div>
<div class="form-group">
<label for="education">Education</label>
<input type="text" class="form-control" id="education">
<div class="float-right">
<a href="#">Add new education</a>
</div>
</div>
<div class="form-group label-text-required">
<label for="country/region">Country/Region<span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<input type="text" class="form-control" id="country/region">
</div>
<div class="form-group label-text-required">
<label for="locations in this country/region">Location in this Country/Region</label>
<input type="text" class="form-control" id="locations in this country/region">
</div>
<div class="form-group">
<label for="industry">Industry<span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<input type="text" class="form-control" id="industry">
</div>
<div class="form-group">
<label for="Contact-info">Contact-info</label>
<input type="text" class="form-control" id="contact-info">
</div>
<div class="float-right">
<button type="submit" class="btn btn-primary">Save</button>
</div><br><br>
<h3>Edit experience</h3>
<div class="form-group">
<label for="title">Title<span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<input type="text" class="form-control" id="title">
</div>
<div class="form-group">
<label for="employment type">Employment type</label>
<input type="text" class="form-control" id="employment type">
</div>
<div class="form-group">
<label for="company">Company</label>
<input type="text" class="form-control" id="company">
</div>
<div class="form-group">
<label for="location">location<span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<input type="text" class="form-control" id="location">
</div>
<div class="form-group">
<div class="custom-control custom-checkbox mr-sm-2">
<input class="custom-control-input" type="checkbox" id="customcontrolautosizing">
<label class="custom-control-label" for="customcontrolautosizing">
I am currently working in this role
</label>
</div>
</div>
<div class="form-row">
<div class="form-group col-md-3">
<label for="Start date">Start Date<span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<input type="month" class="form-control" id="Start date">
</div>
<div class="form-group col-md-3">
<label for="End date"></label>
<input type="month" class="form-control" id="end-date">
</div>
<div class="col-md-3">End date<span class="glyphicon glyphicon-asterisk" style="color: blue;"></span><br><br>
Present
</div>
</div>
<div class="form-group">
<div class="custom-control custom-checkbox mr-sm-2">
<input class="custom-control-input" type="checkbox" id="customcontrolautosizing">
<label class="custom-control-label" for="customcontrolautosizing">
Update my industry
</label>
</div>
</div>
<div class="form-group">
<div class="custom-control custom-checkbox mr-sm-2">
<input class="custom-control-input" type="checkbox" id="customcontrolautosizing">
<label class="custom-control-label" for="customcontrolautosizing">
Update my headline
</label>
</div>
</div>
<div class="form-group">
<label for="textarea">Description</label>
<textarea class="form-control" id="textarea" rows="5"></textarea>
</div>
<div class="text-muted">
<h6>Media </h6>
<p>Add or link to external documents, photos, sites, videos, and presentations.</p>
</div>
<div class="row">
<div class="col-md-6"><button type="button" class="btn btn-primary btn-lg btn-block">Upload</button>
</div>
<div class="col-md-6"><button type="button" class="btn btn-Link btn-lg btn-block text-decoration-none" style="border: 1px solid rgb(69, 69, 170);">Link</button>
</div>
</div>
<br><br>
<div class="float-right">
<button type="submit" class="btn btn-primary">Save</button>
</div>
<div>
<button type="submit" class="btn btn-outline-dark" style="border: solid;">Delete</button>
</div>
<h3>Education</h3>
<div class="form-group">
<label for="School">School<span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<input type="text" class="form-control" id="School" placeholder="Ex: University of Boston">
</div>
<div class="form-group">
<label for="degree">Degree</label>
<input type="text" class="form-control" id="degree">
</div>
<div class="form-group">
<label for="Field of study">Field of study</label>
<input type="text" class="form-control" id="Field of study">
</div>
<div class="form-row">
<div class="form-group col-md-6">
<label for="Start Year">Start Year<span class="glyphicon glyphicon-asterisk" style="color: blue;"></span></label>
<!-- <input type="month" class="form-control" id="Start year"> -->
<select class="form-control" id="Start Year">
<option></option>
<option>January</option>
<option>Febraury</option>
<option>March</option>
<option>April</option>
</select>
</div>
<div class="form-group col-md-6">
<label for="End year">End Year (or expected)</label>
<!-- <input type="month" class="form-control" id="end-year"> -->
<select class="form-control" id="Start Year">
<option></option>
<option>January</option>
<option>Febraury</option>
<option>March</option>
<option>April</option>
</select>
</div>
</div>
<div class="form-group">
<label for="Grade">Grade</label>
<input type="text" class="form-control" id="Grade">
</div>
<div class="form-group">
<label for="textarea">Activities and societies</label>
<textarea class="form-control" id="textarea" rows="5"></textarea>
<div class="text-muted">
<p>Ex: Alpha Phi Omega, Marching Band, Volleyball.</p>
</div>
</div>
<div class="form-group">
<label for="textarea">Description</label>
<textarea class="form-control" id="textarea" rows="5"></textarea>
</div>
<div class="text-muted">
<h6>Media </h6>
<p>Add or link to external documents, photos, sites, videos, and presentations.</p>
</div>
<div class="row">
<div class="col-md-6"><button type="button" class="btn btn-primary btn-lg btn-block">Upload</button>
</div>
<div class="col-md-6">
<button type="button" class="btn btn-Link btn-lg btn-block text-decoration-none" style="border: 1px solid rgb(69, 69, 170);">Link
</button>
</div>
</form>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>