Distribute .gz files instead of .bz2
[grauphel.git] / templates / oauthAuthorize.php
1 <link rel="stylesheet" href="<?php p(OCP\Util::linkTo('grauphel','grauphel.css')); ?>" type="text/css"/>
2 <form method="post" action="<?php p($_['formaction']); ?>" class="oauth-authorize">
3  <input type="hidden" value="<?php p($_['requesttoken']); ?>" name="requesttoken" />
4  <input type="hidden" value="<?php p($_['oauth_token']); ?>" name="oauth_token" />
5  <p class="msg">
6   Shall application
7   <strong><?php p($_['clientTitle']); ?></strong>
8   get full access to the notes?
9  </p>
10  <p>
11   <label>
12    Application/computer name:
13    <input type="text" name="client" value="<?php p($_['clientAgent']); ?>"/>
14   </label>
15   (e.g. <tt>home pc</tt>)
16  </p>
17  <div class="buttons">
18   <button type="submit" name="auth" value="ok">Yes, authorize</button>
19   <button type="submit" name="auth" value="cancel">No, decline</button>
20  </div>
21 </form>