forked from OpenClassrooms-Student-Center/Front-End-Fisheye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
photographer.html
78 lines (75 loc) · 3.64 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
<!DOCTYPE html>
<html lang="fr" xml:lang="fr">
<head>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<link href="css/photographer.css" rel="stylesheet" type="text/css" />
<meta charset="utf-8">
<link rel="icon" type="image/png" href="assets/favicon.png">
<script src="https://kit.fontawesome.com/e5de308960.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=DM+Sans&display=swap" rel="stylesheet">
<title>Fisheye - photographe </title>
</head>
<body>
<header id="banner-header">
<a href="./index.html" aria-label="Fisheye page d'accueil">
<img src="./assets/images/logo.png" class="logo" alt="Fisheye Home page" role="link" />
</a>
</header>
<main id="main">
<section class="photographer-header" aria-label="Informations sur le photographe">
<button class="contact_button" id="launchform" aria-label="Contactez Moi">Contactez-moi</button>
</section>
<div role="menubar" class="sort-menu">
<p id="sort-title">Trier par </p>
<div class="dropdown-menu">
<button class="dropdown-btn" id="dropdown-btn" data-filter="likes" type="button" aria-haspopup="listbox"
aria-expanded="true" aria-controls="dropdown">Popularité<span class="arrow"></span></button>
<ul class="dropdown collapse" id="dropdown" role="listbox" aria-labelledby="sort-title">
<li class="dropdown-option" data-filter="date" role="option" tabindex="0">Date</li>
<li class="dropdown-option" data-filter="title" role="option" tabindex="0">Titre</li>
</ul>
</div>
</div>
<section class="gallery_section" aria-label="Portfolio du photographe"></section>
</main>
<div class="background" id="background_modal">
<div class="contact-modal" id="contact-form" role="dialog" aria-labelledby="contact-headline" tabindex="0">
<div class="contact-header" id="contact-header">
<div class="headline" tabindex="0">
<h1 id="contact-headline">Contactez-moi</h1>
</div>
</div>
<form id="modalform">
<div>
<label for="firstname">Prénom</label>
<input type="text" name="firstname" id="firstname" aria-required="true" />
<label for="lastname">Nom</label>
<input type="text" name="lastname" id="lastname" aria-required="true" />
<label for="email">Email</label>
<input type="email" name="email" id="email" aria-required="true" />
<label for="message">Votre message</label>
<textarea name="message" id="message" aria-required="true"></textarea>
</div>
<button class="contact_button" id="sendform">Envoyer</button>
</form>
<img src="./assets/icons/close.svg" alt="close form button" class="closeform" id="closeform" role="button"
aria-label="Fermer le formulaire" tabindex="0" />
</div>
<section class="lightbox" id="lightbox" role="dialog" aria-label="Vue lightbox des images">
<div class="lightbox-wrapper">
<div class="btn-wrapper">
<div class="btn-navigate backwards" id="btn-backwards" aria-label="media précédent" tabindex="0"></div>
</div>
<div class="slider-container" id="slider-container"></div>
<div class="btn-wrapper">
<div class="btn-navigate forwards" id="btn-forwards" aria-label="prochain media" tabindex="0"></div>
</div>
<div class="closelightbox" id="closelightbox" aria-label="Fermer la lightbox" tabindex="0">
<img src="./assets/icons/closered.svg" alt="close modal button">
</div>
</div>
</section>
</div>
<script type="module" src="./js/pages/photographer.js"></script>
</body>
</html>