Mailspring/examples/N1-Send-Availability/backend/templates/success.html
Drew Regitsky abb6378bd5 fix(examples): revamp/fix Send-Availability, change URL to live Heroku link
Summary:
Several fixes and updates the the Send Availability example package. Switches from
using `electron-safe-ipc` to using `protocol.RegisterStringProtocol` to communicate
with the child window. Changes the URLs in the package from localhost to our live
demo backend.

Test Plan: manual

Reviewers: bengotow

Reviewed By: bengotow

Differential Revision: https://phab.nylas.com/D2271
2015-11-19 18:16:38 -08:00

30 lines
823 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" integrity="sha512-dTfge/zgoMYpP7QbHy4gWMEGsbsdZeCXz7irItjcC3sPUFtf0kuFbDz/ixG7ArTxmDjLXDmezHubeNikyKGVyQ==" crossorigin="anonymous">
<style>
.icon {
font-size: 120px;
color: #DDD;
}
.content {
margin-top:50px;
text-align: center;
font-size: 18px;
}
.content.top {
margin-top: 100px;
}
</style>
</head>
<body>
<div class="content top">
<span class="glyphicon glyphicon-calendar icon"></span>
</div>
<div class="content">
Event scheduled! Check your email for the invitation.
</div>
</body>
</html>