-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
7098578
commit d7ab6d3
Showing
7 changed files
with
123 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{% extends 'base.html.twig' %} | ||
|
||
{% block content %} | ||
<div class="content error-page"> | ||
<div class="is-center"> | ||
<h2>⚠️ Zoom support may not be what you expect ⚠️</h2> | ||
|
||
<p> | ||
This application can only show and send private messages to <strong>your users</strong>. That means the users you | ||
can see as a Zoom Admin here: <a href="https://zoom.us/account/user">https://zoom.us/account/user</a>. | ||
</p> | ||
|
||
<p> | ||
We cannot show you your contacts, this is a known issue of the Zoom API and you | ||
can found <a href="https://github.com/jolicode/secret-santa/issues/142#issuecomment-781204731">more information here</a>. | ||
</p> | ||
</div> | ||
</div> | ||
<div class="jumbotron" style="padding: 20px 0;"> | ||
<div class="jumbotron-inner"> | ||
<a class="action hvr-buzz action-zoom" href="{{ path('run', { application: 'zoom' }) }}"> | ||
<i class="custom-fa-zoom"></i> Run on Zoom anyway! | ||
<sup style="position:absolute;top:8px;right:4px;font-size: 0.6em;">beta</sup> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="content error-page"> | ||
<div class="is-center"> | ||
<p> | ||
Sorry for any disappointment!<br> | ||
<em>(Also, this application is open-source, you can help!)</em> | ||
</p> | ||
</div> | ||
</div> | ||
{% endblock content %} |