Browse Source

Consent screen improved.

pull/282/head
Sebastian 8 years ago
parent
commit
4c0ad316a2
  1. 104
      src/Squidex/Areas/IdentityServer/Views/Account/Consent.cshtml

104
src/Squidex/Areas/IdentityServer/Views/Account/Consent.cshtml

@ -18,71 +18,77 @@
<h2>We need your consent</h2>
<div class="card profile-section-sm @ErrorClass("ConsentToAutomatedEmails")">
<div class="card-body">
<h4 class="card-title">Automated E-Mails (Optional)</h4>
<label for="consentToAutomatedEmails">
<div class="card profile-section-sm @ErrorClass("ConsentToAutomatedEmails")">
<div class="card-body">
<h4 class="card-title">Automated E-Mails (Optional)</h4>
<div class="card-text row">
<div class="col col-auto">
<input type="checkbox" name="consentToAutomatedEmails" value="True" />
</div>
<div class="col">
I understand and agree that Squidex sends e-mails to inform me about new features, breaking changes and downtimes.
<div class="card-text row">
<div class="col col-auto">
<input type="checkbox" id="consentToAutomatedEmails" name="consentToAutomatedEmails" value="True" />
</div>
<div class="col">
I understand and agree that Squidex sends e-mails to inform me about new features, breaking changes and downtimes.
</div>
</div>
</div>
</div>
</div>
</label>
<div class="card profile-section-sm @ErrorClass("ConsentToCookies")">
<div class="card-body">
<h4 class="card-title">Cookies & Analytics</h4>
<label for="consentToCookies">
<div class="card profile-section-sm @ErrorClass("ConsentToCookies")">
<div class="card-body">
<h4 class="card-title">Cookies & Analytics</h4>
<div class="card-text row">
<div class="col col-auto">
<input type="checkbox" name="consentToCookies" value="True" />
</div>
<div class="col">
<p>
I understand and agree that Squidex uses cookies to ensure you get the best experience on our platform and to store your login status.
</p>
<p>
I understand and agree that Squidex has integrated Google Analytics (with the anonymizer function). Google Analytics is a web analytics service to gather and analyse data about the behavior of users.
</p>
<p>
I have read the <a href="@Model.PrivacyUrl" target="_blank">privacy policies</a> and understand them.
</p>
<div class="card-text row">
<div class="col col-auto">
<input type="checkbox" id="consentToCookies" name="consentToCookies" value="True" />
</div>
<div class="col">
<p>
I understand and agree that Squidex uses cookies to ensure you get the best experience on our platform and to store your login status.
</p>
<p>
I understand and agree that Squidex has integrated Google Analytics (with the anonymizer function). Google Analytics is a web analytics service to gather and analyse data about the behavior of users.
</p>
<p>
I accept the <a href="@Model.PrivacyUrl" target="_blank">privacy policies</a>.
</p>
</div>
</div>
</div>
</div>
</div>
</label>
<div class="card profile-section-sm @ErrorClass("ConsentToPersonalInformation")">
<div class="card-body">
<h4 class="card-title">Personal Information</h4>
<label for="consentToPersonalInformation">
<div class="card profile-section-sm @ErrorClass("ConsentToPersonalInformation")">
<div class="card-body">
<h4 class="card-title">Personal Information</h4>
<div class="card-text row">
<div class="col col-auto">
<input type="checkbox" name="consentToPersonalInformation" value="True" />
</div>
<div class="col">
I understand and agree that Squidex collects the following private information that are retrieved from external authentication providers such as Google, Microsoft or Github.
<div class="card-text row">
<div class="col col-auto">
<input type="checkbox" id="consentToPersonalInformation" name="consentToPersonalInformation" value="True" />
</div>
<div class="col">
I understand and agree that Squidex collects the following private information that are retrieved from external authentication providers such as Google, Microsoft or Github.
<ul class="personal-information">
<li>
Basic personal information (e-mail address, name and picture) are provided to all other users so that they can add you to their working space.
</li>
<li>
At anytime you have the option to change these information to anonymize your account.
</li>
<li>
Your user account has an unique identifier and for all your changes we track, that you made these changes and provide this information to other users.
</li>
</ul>
<ul class="personal-information">
<li>
Basic personal information (first name, last name and picture) are provided to all other users so that they can add you to their working space.
</li>
<li>
At anytime you have the option to change these information to anonymize your account.
</li>
<li>
Your user account has an unique identifier and for all your changes we track, that you made these changes and provide this information to other users.
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</label>
<div class="profile-section-sm text-right">
<button type="submit" class="btn btn-success">I agree!</button>

Loading…
Cancel
Save