Register Javascript files via API
[grauphel.git] / templates / oauthAuthorize.php
index 5d4023b33f1666c403b4a1d939391a5a56eda861..782c51a49a2bc23b032ba8ff142c19fcaa07a0f9 100644 (file)
@@ -1,9 +1,22 @@
-<form method="post" action="<?php p($_['formaction']); ?>">
+<?php style('grauphel', 'grauphel'); ?>
+
+<form method="post" action="<?php p($_['formaction']); ?>" class="oauth-authorize">
  <input type="hidden" value="<?php p($_['requesttoken']); ?>" name="requesttoken" />
  <input type="hidden" value="<?php p($_['oauth_token']); ?>" name="oauth_token" />
+ <p class="msg">
+  Shall application
+  <strong><?php p($_['clientTitle']); ?></strong>
+  get full access to the notes?
+ </p>
  <p>
-  Shall application FIXME get full access to the notes?
+  <label>
+   Application/computer name:
+   <input type="text" name="client" value="<?php p($_['clientAgent']); ?>"/>
+  </label>
+  (e.g. <tt>home pc</tt>)
  </p>
- <button type="submit" name="auth" value="ok">Yes, authorize</button>
- <button type="submit" name="auth" value="cancel">No, decline</button>
+ <div class="buttons">
+  <button type="submit" name="auth" value="ok">Yes, authorize</button>
+  <button type="submit" name="auth" value="cancel">No, decline</button>
+ </div>
 </form>