Add Google authentication

This commit is contained in:
Frédéric Guillot
2014-05-03 22:24:03 -04:00
parent 9531e439cd
commit 560a12f0bd
96 changed files with 7751 additions and 11 deletions

View File

@@ -14,6 +14,8 @@
<table>
<tr>
<th><?= t('Username') ?></th>
<th><?= t('Name') ?></th>
<th><?= t('Email') ?></th>
<th><?= t('Administrator') ?></th>
<th><?= t('Default Project') ?></th>
<th><?= t('Actions') ?></th>
@@ -23,6 +25,12 @@
<td>
<span title="user_id=<?= $user['id'] ?>"><?= Helper\escape($user['username']) ?></span>
</td>
<td>
<?= Helper\escape($user['name']) ?>
</td>
<td>
<?= Helper\escape($user['email']) ?>
</td>
<td>
<?= $user['is_admin'] ? t('Yes') : t('No') ?>
</td>