forked from OpenClassrooms-Student-Center/Front-End-Fisheye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphotographer.html
118 lines (114 loc) · 4.15 KB
/
photographer.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
<!DOCTYPE html>
<html lang="fr">
<head>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/photographer.css" rel="stylesheet" type="text/css" />
<link href="css/lightbox.css" rel="stylesheet" type="text/css" />
<meta charset="utf-8" />
<link rel="icon" type="image/png" href="assets/favicon.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Fisheye - photographe</title>
</head>
<body>
<header class="container">
<a href="./">
<img src="assets/images/logo.png" class="logo" alt="fisheye home page" />
</a>
</header>
<main class="container">
<section class="photograph-header">
<div class="photographer-infos">
<h1 class="photographer-name"></h1>
<address role="presentation" class="photographer-address">
<span tabindex="0"></span>
</address>
<p class="photographer-tagline" tabindex="0"></p>
</div>
<div class="contact_button-container">
<button class="contact_button">Contactez-moi</button>
</div>
<div class="photographer-img"></div>
</section>
<div class="likes-widget">
<div class="likes-widget__details">
<span class="likes-widget__count" tabindex="0">0</span>
<em class="fa-solid fa-heart likes-widget__icon"></em>
</div>
<div class="likes-widget_price" tabindex="0"></div>
</div>
<section class="medias-filter">
<label for="order" class="medias-filter_label" >Trier par</label>
<select
name="order"
id="order"
class="medias-filter_select"
data-context="filter-select"
aria-label="Trier les medias"
>
<option class="hide" value="" aria-label="Choisir une option">Sélectionner</option>
<option value="0">Popularité</option>
<option value="1">Date</option>
<option value="2">Titre</option>
</select>
</section>
<section class="media"></section>
</main>
<dialog aria-modal =true id="contact_modal" role="alertdialog">
<div class="modal">
<header>
<h2 id="contact-me" tabindex="0">Contactez-moi</h2>
<img
src="assets/icons/close.svg"
class="close-modal"
tabindex="0"
alt="Fermer le forumaire de contact"
/>
</header>
<form>
<div>
<label for="first-name">Prénom</label>
<input type="text" id="first-name" name="first-name" required />
</div>
<div>
<label for="last-name">Nom</label>
<input type="text" id="last-name" name="last-name" required />
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" name="email" required />
</div>
<div>
<label for="message">Votre message</label>
<textarea id="message" name="message" rows="10" required></textarea>
</div>
<button
class="contact_button"
type="submit"
aria-label="Envoyer votre message"
>
Envoyer
</button>
</form>
</div>
</dialog>
<dialog id="lightbox">
<div class="dialog-container">
<button class="close-btn" aria-label="Fermer le lightbox">X</button>
<div class="lightbox-navigation">
<button class="arrow" id="prev" aria-label="Retour à l'image précédente">❮</button>
<button class="arrow" id="next" aria-label="Passer à l'image suivante">❯</button>
</div>
<div class="lightbox-media"></div>
<h3 id="lightboxTitle"></h3>
</div>
</dialog>
<script type="module" src="./scripts/pages/photographer.js"></script>
<script type="module" src="./scripts/utils/contactForm.js"></script>
</body>
</html>