Skip to content

Commit

Permalink
Merge pull request #3 from awslabs/jp/updates-from-sfloft-feedback
Browse files Browse the repository at this point in the history
Address SF Loft Feedback
  • Loading branch information
jpignata committed Jan 31, 2017
2 parents 4182cba + b64de3c commit d0dddcb
Show file tree
Hide file tree
Showing 117 changed files with 146 additions and 115 deletions.
2 changes: 1 addition & 1 deletion NOTICE
@@ -1,2 +1,2 @@
Wild Rydes Serverless Web Application Workshop: Lab Guide
Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
190 changes: 111 additions & 79 deletions README.md

Large diffs are not rendered by default.

File renamed without changes
File renamed without changes
Binary file added images/lab1_cognito-unauth-policy.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
30 changes: 21 additions & 9 deletions lab1/index.html
Expand Up @@ -6,14 +6,16 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wild Rydes</title>



<link rel="stylesheet" href="styles/main.css">

<script src="scripts/vendor/modernizr.js"></script>
<script src="scripts/vendor/aws-sdk.min.js" defer></script>

<script src="https://use.typekit.net/dmq4txp.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>

<script src="scripts/config.js" defer></script>
<script src="scripts/index.js" defer></script>
</head>
<body class="page-home">

Expand Down Expand Up @@ -82,16 +84,26 @@ <h2 class="section-title">Our Story</h2>

<section class="home-sign-up">
<div class="row column">
<img class="icon-w" src="images/wr-home-W.png">
<div class="row column">
<img class="icon-w" src="images/wr-home-W.png">

<form onsubmit="javascript:void(0);">
<input type="email" placeholder="Enter your email address">
<button type="button">Submit</button>
</form>
<div class="row column" id="form">
<form>
<input type="email" placeholder="Enter your email address">
<button type="submit">Submit</button>
</form>

<h2 class="section-title">Sign Up</h2>
<h2 class="section-title">Sign Up</h2>

<p class="content">Wild Rydes is coming soon! Enter your email to enter the limited private beta</p>
</div>

<p class="content">Wild Rydes is coming soon! Enter your email to enter the limited private beta</p>
<div style="margin-top: 110px; display: none;" id="thank-you" class="row column">
<h2 class="section-title">Thank You</h2>

<p class="content">Wild Rydes is coming soon! Stay tuned for more info about unicorns near you!</p>
</div>
</div>

<div class="apps">
<a class="app-icon" href=""><img src="images/wr-home-apple.png"></a>
Expand Down
File renamed without changes.
7 changes: 4 additions & 3 deletions lab2/scripts/index.js → lab1/scripts/index.js
Expand Up @@ -22,11 +22,12 @@ emailForm.addEventListener('submit', function (event) {
};

dynamoDB.putItem(params, function (err, data) {
if (err) {
console.log(err);
} else {
if (!err) {
formDiv.style.display = 'none';
confirmationDiv.style.display = 'block';
} else {
alert(err);
console.log(err);
}
});
});
File renamed without changes.
1 change: 0 additions & 1 deletion lab1/styles/main.css

This file was deleted.

File renamed without changes.
1 change: 0 additions & 1 deletion lab4/admin/index.html → lab2/admin/index.html
Expand Up @@ -25,7 +25,6 @@ <h2>Wild Rydes Admin</h2>
<h5>Navigation</h5>
<ul>
<li><a href="emails.html">View Emails</a></li>
<li><a href="post.html">New Blog Post</a></li>
<li><a id="logout" href="#">Log Out</a></li>
</ul>
</div>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions lab3/admin/index.html
Expand Up @@ -25,6 +25,7 @@ <h2>Wild Rydes Admin</h2>
<h5>Navigation</h5>
<ul>
<li><a href="emails.html">View Emails</a></li>
<li><a href="post.html">New Blog Post</a></li>
<li><a id="logout" href="#">Log Out</a></li>
</ul>
</div>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
28 changes: 7 additions & 21 deletions lab2/index.html → prelab/index.html
Expand Up @@ -9,13 +9,9 @@
<link rel="stylesheet" href="styles/main.css">

<script src="scripts/vendor/modernizr.js"></script>
<script src="scripts/vendor/aws-sdk.min.js" defer></script>

<script src="https://use.typekit.net/dmq4txp.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>

<script src="scripts/config.js" defer></script>
<script src="scripts/index.js" defer></script>
</head>
<body class="page-home">

Expand Down Expand Up @@ -84,26 +80,16 @@ <h2 class="section-title">Our Story</h2>

<section class="home-sign-up">
<div class="row column">
<div class="row column">
<img class="icon-w" src="images/wr-home-W.png">

<div class="row column" id="form">
<form>
<input type="email" placeholder="Enter your email address">
<button type="submit">Submit</button>
</form>

<h2 class="section-title">Sign Up</h2>
<img class="icon-w" src="images/wr-home-W.png">

<p class="content">Wild Rydes is coming soon! Enter your email to enter the limited private beta</p>
</div>
<form onsubmit="javascript:void(0);">
<input type="email" placeholder="Enter your email address">
<button type="button">Submit</button>
</form>

<div style="margin-top: 110px; display: none;" id="thank-you" class="row column">
<h2 class="section-title">Thank You</h2>
<h2 class="section-title">Sign Up</h2>

<p class="content">Wild Rydes is coming soon! Stay tuned for more info about unicorns near you!</p>
</div>
</div>
<p class="content">Wild Rydes is coming soon! Enter your email to enter the limited private beta</p>

<div class="apps">
<a class="app-icon" href=""><img src="images/wr-home-apple.png"></a>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions prelab/styles/main.css

Large diffs are not rendered by default.

File renamed without changes.

0 comments on commit d0dddcb

Please sign in to comment.