view static-files/confirm.html @ 60:be00b5be37d6

half-baked proof of concept for popup auth flow.
author Atul Varma <avarma@mozilla.com>
date Mon, 28 Jun 2010 22:31:00 -0700
parents
children
line wrap: on
line source

<!DOCTYPE html>
<html>
<head>
  <title>Mozilla Summit Confirmation</title>
  <style>
  body {
    font-family: Helvetica, sans-serif;
    font-size: 24pt;
    width: 20em;
    margin: 0 auto;
  }

  .origin {
    font-weight: bold;
  }

  div.button {
    cursor: pointer;
    float: left;
    padding: 1em;
    margin: 1em;
    background: blue;
  }

  div.button:hover {
    background: yellow;
  }
  </style>
</head>
<body>
<p>Do you want to allow <span class="origin"></span> to access your
Mozilla Summit information?</p>
<div class="button" id="no">Deny</div>
<div class="button" id="yes">Allow</div>
<script src="js/summit-idp.js"></script>
<script src="js/api.js"></script>
<script src="js/confirm.js"></script>
</body>
</html>