-
Notifications
You must be signed in to change notification settings - Fork 0
/
signin-success.html
110 lines (98 loc) · 4.05 KB
/
signin-success.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Rally - Successful Sign In</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="/img/favicon.ico" />
</head>
<body>
<section class="navigation">
<div class="nav-container">
<div class="brand">
<a href="/"></a>
</div>
<a href="/"><img class="logo" src="/img/logo.png"></a>
<nav>
<div class="nav-mobile">
<a id="nav-toggle" href="#"><span></span></a>
</div>
<ul class="nav-list">
<li><a href="/">Home</a></li>
<li><a href="/about.html">About</a></li>
<li><a href="#">Contact</a>
<ul class="nav-dropdown">
<li><a href="mailto:jeriesd1998@gmail.com">Jeries Dababneh</a></li>
<li><a href="mailto:me@matthewmuccio.com ">Matthew Muccio</a></li>
<li><a href="mailto:mwilker1@umd.edu">Michael Wilkerson</a></li>
</ul>
</li>
<li><a href="/events.html">Events</a></li>
<li><a href="/account.html">Account</a></li>
</ul>
</nav>
</div>
</section>
<section class="body signin-body">
<div class="signin-elements">
<h1>Hello, {first_name}!</h1>
<h2>You have been signed in successfully.</h2>
<img src="/img/checkmark.png" width="150" style="width: 150px;">
<div class="text-body">
<p class="body-text">You now can join any events that are open or that you are invited to, create or join teams, and collaborate with other members of the events.</p>
<p class="body-text">If you are looking for events to attend, and for a team, see our <a href="/events.html">events page</a>. Otherwise, check your <a href="/account.html">account page</a> to view any invitations you may have, or update any information about yourself.</p>
<p class="body-text">Put on your Rally cap and get to collaborating!</p>
</div>
</div>
</section>
<section class="footer">
<div class="contain">
<div class="col">
<h1>Rally™ 2018</h1>
<ul>
<li><a style="color: #999999; cursor: default;">Matthew Muccio</a></li>
<li><a style="color: #999999; cursor: default;">Jeries Dababneh</a></li>
<li><a style="color: #999999; cursor: default;">Mike Wilkerson</a></li>
</ul>
</div>
<div class="col">
<h1>Our Team</h1>
<ul>
<li><a href="http://www.matthewmuccio.com" target="_blank">Matthew Muccio - Web App</a></li>
<li><a href="https://github.com/therealjeries" target="_blank">Jeries Dababneh - iOS App</a></li>
<li><a href="https://github.com/mwilks" target="_blank">Mike Wilkerson - Design</a></li>
</ul>
</div>
<div class="col">
<h1>This Site</h1>
<ul>
<li><a href="/about.html">About</a></li>
<li><a href="/register.html">Register</a></li>
<li><a href="/signin.html">Sign In</a></li>
</ul>
</div>
<div class="col">
<h1>Get in Touch</h1>
<ul>
<li><a href="https://github.com/matthewmuccio/RallyApp" target="_blank">GitHub</a></li>
<li><a href="https://www.facebook.com/matthewmooch" target="_blank">Facebook</a></li>
<li><a href="https://twitter.com/mattmuccio" target="_blank">Twitter</a></li>
</ul>
</div>
<div class="col">
<h1>More Projects</h1>
<ul>
<li><a href="http://blockygame.com/" target="_blank">Blocky (Bitcamp 2017)</a></li>
<li><a href="https://github.com/matthewmuccio/QuotaiOS" target="_blank">Quota (HoyaHacks 2017)</a></li>
<li><a href="http://matthewmuccio.com/webglglobe/" target="_blank">WebGL Globe (Fall 2016)</a></li>
</ul>
</div>
<div class="clearfix"></div>
</div>
</section>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src="js/index.js"></script>
</body>
</html>