-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (68 loc) · 3.98 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:image" content="https://s3.amazonaws.com/uxpin/marketing/product-tribes.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://s3.amazonaws.com/uxpin/marketing/product-tribes.png">
<title>Product Tribes. Slack Community for Designers, PMs and Developers.</title>
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Playfair+Display:400,400i,700,700i,900,900i" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="main.js"></script>
</head>
<body>
<main>
<header>
<img src="img/pt-logo.png"> <!--Product Tribes logo-->
<h1>Product Tribes<span>Join 6000+ designers, PMs, and developers on Slack</span></h1>
<a href="#form-container" class="primary-button">Apply now!</a>
</header>
<section ="tabbed-container">
<ul class="tabs"> <!-- Tabs switching between sub-sections-->
<li id="about" class="underline">About Product Tribes</li>
<li id="virtual-events">Free Virtual Events</li>
</ul>
<div class="tabs-container">
<div class="description-container">
<h2>Slack Community for Digital Product Makers</h2>
<img src="img/slack.png" class="slack">
<ul class="description">
<li class="group-icon">Meet product teams at IBM, Groupon, PwC, Hewlett Packard, and more.</li>
<li class="feedback-icon">Give and get feedback on UX, product management, and front-end development.</li>
<li class="webinars-icon">Get early invites to exclusive webinars and free virtual conferences.</li>
<a href="#form-container" class="primary-button">Apply now!</a>
</ul>
</div>
<div class="events-container inactive"> <!-- List of Product Tribes virtual events. Filled from JSON-->
<h2>Product Tribes Virtual Events. More Coming Up!</h2>
<p class="events-description">Product Tribes community meets up during frequent virtual meetups and webinars. We strive to deliver the highest quality while keeping every event completely free of any charges.</p>
<ul class="events">
</ul>
</div>
</div>
</section>
<section id="form-container"> <!--Application Form container-->
<h2>Apply to Product Tribes<span class="join-instruction">Product Tribes is a community of experienced designers, developers, and PMs. If you have more than 3 years of experience in a product team, feel free to apply. Expect your application to be reviewed in <span class="hours">48 hours.</span></span></h2>
<form class="apply-form" id="apply" method="post">
<label for="name" class="normal-label">Name</label>
<input type="text" name="name" value="" id="name">
<label for="job" class="normal-label">Job Title</label>
<input type="text" name="job" value="" id="job">
<label for="company" class="normal-label">Company</label>
<input type="text" name="company" value="" id="company">
<label for="email" class="normal-label">Email</label>
<input type="text" name="email" value="" id="email">
<button type="submit" id="submit-button" class="primary-button">Apply now!</button>
<p class="all-fields-required">All fields are required</p>
</form>
</section>
<footer>
<img src="img/uxpin-logo.png" class="uxpin-logo">
<h3>The Product Design Platform of the Future. <em>The only one you need.</em></h3>
<a href="http://uxpin.com" class="secondary-button" title="The Product Design Platform of the Future." target="_blank">Join the revolution!</a>
<img src="img/uxpin-footer.png" class="uxpin-footer">
</footer>
</body>
</html>