-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPopup-ProfilePage-UpdateHeaderPhoto.html
More file actions
97 lines (69 loc) · 2.88 KB
/
Copy pathPopup-ProfilePage-UpdateHeaderPhoto.html
File metadata and controls
97 lines (69 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Window Popup - Update Header Photos</title>
<!-- Required meta tags always come first -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="Bootstrap/dist/css/bootstrap-reboot.css">
<link rel="stylesheet" type="text/css" href="Bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="Bootstrap/dist/css/bootstrap-grid.css">
<!-- Theme Styles CSS -->
<link rel="stylesheet" type="text/css" href="css/theme-styles.css">
<link rel="stylesheet" type="text/css" href="css/blocks.css">
<!-- Main Font -->
<script src="js/webfontloader.min.js"></script>
<script>
WebFont.load({
google: {
families: ['Roboto:300,400,500,700:latin']
}
});
</script>
<link rel="stylesheet" type="text/css" href="css/fonts.css">
<!-- Styles for plugins -->
<link rel="stylesheet" type="text/css" href="css/jquery.mCustomScrollbar.min.css">
<link rel="stylesheet" type="text/css" href="css/swiper.min.css">
<link rel="stylesheet" type="text/css" href="css/daterangepicker.css">
</head>
<body class="overlay-enable modal-open">
<!-- Window-popup Update Header Photo -->
<div class="modal fade show" id="update-header-photo" style="display: block">
<div class="modal-dialog ui-block window-popup update-header-photo">
<a href="#" class="close icon-close" data-dismiss="modal" aria-label="Close">
<svg class="olymp-close-icon"><use xlink:href="icons/icons.svg#olymp-close-icon"></use></svg>
</a>
<div class="ui-block-title">
<h6 class="title">Update Header Photo</h6>
</div>
<a href="#" class="upload-photo-item">
<svg class="olymp-computer-icon"><use xlink:href="icons/icons.svg#olymp-computer-icon"></use></svg>
<h6>Upload Photo</h6>
<span>Browse your computer.</span>
</a>
<a href="#" class="upload-photo-item" data-toggle="modal" data-target="#choose-from-my-photo">
<svg class="olymp-photos-icon"><use xlink:href="icons/icons.svg#olymp-photos-icon"></use></svg>
<h6>Choose from My Photos</h6>
<span>Choose from your uploaded photos</span>
</a>
</div>
</div>
<!-- ... end Window-popup Update Header Photo -->
<!-- jQuery first, then Other JS. -->
<script src="js/jquery-3.2.0.min.js"></script>
<!-- Js effects for material design. + Tooltips -->
<script src="js/material.min.js"></script>
<!-- Helper scripts (Tabs, Equal height, Scrollbar, etc) -->
<script src="js/theme-plugins.js"></script>
<!-- Init functions -->
<script src="js/main.js"></script>
<!-- Select / Sorting script -->
<script src="js/selectize.min.js"></script>
<!-- Swiper / Sliders -->
<script src="js/swiper.jquery.min.js"></script>
<script src="js/mediaelement-and-player.min.js"></script>
<script src="js/mediaelement-playlist-plugin.min.js"></script>
</body>
</html>