Merge in 5.31
[civicrm-core.git] / ext / oauth-client / ang / oauthProviderList.aff.html
CommitLineData
128850fd
TO
1<div oauth-util-import="CRM.oauthUtil.providers" to="theProviders"></div>
2
3<div class="help">
4 <p>
5 {{ts('CiviCRM may be configured as a client that interacts with remote web-services, such as Google Mail or Microsoft Exchange. Please choose the type of web-service you wish to connect to:')}}
6 </p>
7
8 <!--
9 To do so, you must first register with the service to obtain credentials (Client ID and Client Secret). Copy the assigned credentials below.
10 -->
11</div>
12
13<table>
14 <thead>
15 <tr>
16 <th>{{ts('Name')}}</th>
17 <th>{{ts('Title')}}</th>
18 </tr>
19 </thead>
20 <tbody>
21 <tr ng-repeat="provider in theProviders">
22 <td>
23 <a ng-href="#!/?provider={{provider.name}}">{{provider.name}}</a>
24 </td>
25 <td>
26 <a ng-href="#!/?provider={{provider.name}}">{{provider.title}}</a>
27 </td>
28 </tr>
29 </tbody>
30</table>