-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
54 lines (53 loc) · 2.44 KB
/
signup.html
File metadata and controls
54 lines (53 loc) · 2.44 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
<!DOCTYPE html>
<html>
<head>
<title>Photographers In Fashion</title>
<!-- Responsive mediaport link -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Opengraph image -->
<meta property="og:title" content="Photographers In Fashion">
<meta property="og:description" content="A directory of fashion photographers">
<meta property="og:url" content="https://www.photographersinfashion.com">
<meta property="og:image" content="https://i.imgur.com/vvvrTBa.png">
<meta property="og:site_name" content="Photographers In Fashion">
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Photographers In Fashion">
<meta property="twitter:description" content="A directory of fashion photographers">
<meta property="twitter:image" content="https://i.imgur.com/vvvrTBa.png">
<!-- CSS link-->
<link rel="stylesheet" type="text/css" href="signup-styles.css">
<!--Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Baskervville:ital@0;1&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="https://i.imgur.com/HeJsf5F.png" type="image/x-icon">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CCF45LTZXL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CCF45LTZXL');
</script>
</head>
<body>
<div class="signup-container">
<div>
<p>
Coming Soon
</p>
</div>
<div>
<h1>Photographers In Fashion</h1>
</div>
<form form method="post" action="https://script.google.com/macros/s/AKfycbxDCaV1YGBPXw-pwQR7Q4wLss2-IsoeruTR_WX7iDUn6iW_zIMlDWBQ-0av0xD15Mlj9g/exec" id="signupForm" name="signup">
<input type="email" id="email" name="email" placeholder="Enter your email" required autocomplete="email">
<button type="submit">Notify me!</button>
</form>
<div id="message" style="display: none;"></div>
</div>
<script src="signup.js"></script>
</body>
</html>