1
0
Fork 0
mirror of synced 2024-06-01 10:29:48 +12:00

Updated UI

This commit is contained in:
Eldad Fux 2020-02-23 10:57:51 +02:00
parent 4da44acb6f
commit ba1f2f0dec
9 changed files with 142 additions and 126 deletions

View file

@ -36,17 +36,14 @@
<label for="name">Name</label>
<div class="row">
<div class="col span-8">
<div class="row responsive">
<div class="col span-8 margin-bottom-small">
<input name="name" id="name" type="text" autocomplete="off" data-ls-bind="{{account.name}}" required class="margin-bottom-no">
</div>
<div class="col span-4">
<button type="submit" class="fill reverse">Update Name</button>
<button type="submit" class="fill reverse margin-bottom-no">Update Name</button>
</div>
</div>
<footer class="clear">
</footer>
</form>
</div>
@ -67,8 +64,8 @@
data-failure-param-alert-classname="error">
<label>Email</label>
<div class="row">
<div class="col span-8">
<div class="row responsive">
<div class="col span-8 margin-bottom-small">
<input name="email" type="email" class="margin-bottom-no" autocomplete="off" placeholder="me@example.com" data-ls-bind="{{account.email}}" required>
</div>
<div class="col span-4">
@ -76,9 +73,7 @@
<label>Password</label>
<input name="password" type="password" class="full-width" autocomplete="off" placeholder="" required>
<footer>
<button type="submit">Update</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</footer>
<button type="submit" class="margin-bottom-no">Update</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</div>
</div>
</div>

View file

@ -189,7 +189,7 @@
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Create Project">
<p>Appwrite project is set of services and resources shared across different platforms like Web, iOS or Android.</p>
<p>Appwrite projects are containers for your resources and apps across different platforms.</p>
<label>Name</label>
<input type="text" class="full-width" name="name" required autocomplete="off" />

View file

@ -4,9 +4,9 @@ $home = $this->getParam('home', '');
<div class="cover">
<div class="zone xl">
<h1 class="margin-bottom margin-top">Your Appwrite Projects</h1>
<h1 class="margin-bottom margin-top">Your Projects</h1>
<p class="margin-bottom margin-top-negative-small">Start creating projects and take advantage of Appwrite server.</p>
<p class="margin-bottom margin-top-negative-small">Start creating projects and take advantage of your Appwrite server APIs and tools.</p>
<ul class="margin-bottom-xl clear">
<li class="pull-start margin-end margin-bottom-small"><a href="<?php echo $home; ?>/" target="_blank"><i class="icon-lamp"></i> &nbsp;Learn More</a></li>
@ -79,7 +79,7 @@ $home = $this->getParam('home', '');
<p class="text-fade">Take full advantage of Appwrite APIs and tools for your new project.</p>
<a href="https://github.com/appwrite/appwrite/blob/master/docs/tutorials/environment-variables.md" target="_blank" rel="noopener"><i class="icon-angle-circled-right margin-start-negative-tiny margin-end-tiny"></i> Full Documentation</a>
<a data-ls-attrs="href={{env.HOME}}/docs" target="_blank" rel="noopener"><i class="icon-angle-circled-right margin-start-negative-tiny margin-end-tiny"></i> Full Documentation</a>
</div>
</div>
</div>

View file

@ -1,5 +1,10 @@
<?php
$customDomains = $this->getParam('customDomains', false);
?>
<div class="cover">
<h1 class="zone xl margin-bottom-large margin-top">
<h1 class="zone xl margin-bottom-xl margin-top">
Settings
</h1>
</div>
@ -127,127 +132,142 @@
</form>
</li> -->
<li data-state="/console/settings/domains?project={{router.params.project}}">
<h2>Custom Domains</h2>
<?php if(!$customDomains): ?>
<h2 style="display: none;">Custom Domains</h2>
<div class="zone xl"
data-service="teams.getMemberships"
data-scope="console"
data-event="load,teams.createMembership,teams.deleteMembership"
data-name="members"
data-param-team-id="{{console-project.teamId}}"
data-success="trigger"
data-success-param-trigger-events="teams.getMemberships">
<div class="box margin-bottom">
<table class="vertical">
<thead>
<tr>
<th width="140"></th>
<th width="220">Domain Name</th>
<th width="160">TLS</th>
<th></th>
<th width="60"></th>
</tr>
</thead>
<tbody data-ls-loop="members" data-ls-as="team">
<tr>
<td data-title="Status">
<span class="tag blue"><i class="icon-ok-circled"></i>Verified&nbsp;</span> &nbsp;
</td>
<td data-title="Domain: ">
<span xdata-ls-bind="{{member.name}}" class="text-size-small text-bold">appwrite.example.com</span>
</td>
<td data-title="TLS: ">
<!-- <span class="tag yellow"><i class="icon-ok-circled"></i> Pending&nbsp;</span> &nbsp; -->
<span class="tag green"><i class="icon-ok-circled"></i> Enabled&nbsp;</span> &nbsp;
</td>
<td data-title="">
<a href="" class="text-size-small">DNS Settings</a>
</td>
<td data-title="">
<form class="pull-end"
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Delete Project Task"
data-service="projects.deleteTask"
data-scope="console"
data-event="submit"
data-confirm="Are you sure you want to delete this task?"
data-success="alert,trigger"
data-success-param-alert-text="Deleted task successfully"
data-success-param-trigger-events="projects.deleteTask,modal-close"
data-failure="alert"
data-failure-param-alert-text="Failed to delete task"
data-failure-param-alert-classname="error">
<input type="hidden" name="projectId" data-ls-bind="{{router.params.project}}" />
<input type="hidden" name="taskId" data-ls-bind="{{task.$id}}" />
<button class="danger round reverse small"><i class="icon-trash"></i></button>
</form>
</td>
</tr>
</tbody>
</table>
<div class="box line margin-bottom">
<h3>Enable Custom Domains</h3>
<p>To enable <?php echo APP_NAME; ?>'s custom domain feature, you have to start your server instance with a public accessable domain name.</p>
<p>Start your <?php echo APP_NAME; ?> server container with the <b>_APP_DOMAINS_TARGET</b> enviornment variable set with a public accessable domain name that resolves to your <?php echo APP_NAME; ?> server setup.</p>
<p class="margin-bottom-no">The <?php echo APP_NAME; ?> server will use your target domain to validate new custom domains and will automatically generate SSL certificates for your new domains using letsencrypt certbot.</p>
</div>
<?php endif; ?>
<div class="clear">
<div data-ui-modal class="modal box close" data-button-text="Add Domain">
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
<?php if($customDomains): ?>
<h2>Custom Domains</h2>
<h1>Add Domain</h1>
<div class="zone xl"
data-service="teams.getMemberships"
data-scope="console"
data-event="load,teams.createMembership,teams.deleteMembership"
data-name="members"
data-param-team-id="{{console-project.teamId}}"
data-success="trigger"
data-success-param-trigger-events="teams.getMemberships">
<form
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Create Project Task"
data-service="projects.createTask"
data-scope="console"
data-event="submit"
data-success="alert,trigger,reset"
data-success-param-alert-text="Created task successfully"
data-success-param-trigger-events="projects.createTask,modal-close"
data-failure="alert"
data-failure-param-alert-text="Failed to create task"
data-failure-param-alert-classname="error">
<div class="box margin-bottom">
<table class="vertical">
<thead>
<tr>
<th width="140"></th>
<th width="220">Domain Name</th>
<th width="160">TLS</th>
<th></th>
<th width="60"></th>
</tr>
</thead>
<tbody data-ls-loop="members" data-ls-as="team">
<tr>
<td data-title="Status">
<span class="tag blue"><i class="icon-ok-circled"></i>Verified&nbsp;</span> &nbsp;
</td>
<td data-title="Domain: ">
<span xdata-ls-bind="{{member.name}}" class="text-size-small text-bold">appwrite.example.com</span>
</td>
<td data-title="TLS: ">
<!-- <span class="tag yellow"><i class="icon-ok-circled"></i> Pending&nbsp;</span> &nbsp; -->
<span class="tag green"><i class="icon-ok-circled"></i> Enabled&nbsp;</span> &nbsp;
</td>
<td data-title="">
<a href="" class="text-size-small">DNS Settings</a>
</td>
<td data-title="">
<form class="pull-end"
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Delete Project Task"
data-service="projects.deleteTask"
data-scope="console"
data-event="submit"
data-confirm="Are you sure you want to delete this task?"
data-success="alert,trigger"
data-success-param-alert-text="Deleted task successfully"
data-success-param-trigger-events="projects.deleteTask,modal-close"
data-failure="alert"
data-failure-param-alert-text="Failed to delete task"
data-failure-param-alert-classname="error">
<input type="hidden" name="projectId" data-ls-bind="{{router.params.project}}" />
<input type="hidden" name="projectId" data-ls-bind="{{router.params.project}}" />
<input type="hidden" name="taskId" data-ls-bind="{{task.$id}}" />
<label for="name">Domain Name</label>
<input type="text" class="full-width" id="domain" name="domain" placeholder="appwrite.example.com" required autocomplete="off" />
<button class="danger round reverse small"><i class="icon-trash"></i></button>
</form>
</td>
</tr>
</tbody>
</table>
</div>
<div class="info margin-top margin-bottom">
<div class="text-bold margin-bottom-small">Setup & Verify your Domain</div>
<p>Add the following DNS records to your DNS provider settings to setup and verify your new custom domain.</p>
<ol>
<li>
<p>Add a CNAME record to point your subdomain to <?php echo APP_NAME; ?> with the following value:</p>
<div class="ide margin-bottom-small">
<pre class="line-numbers"><code class="prism language-javascript" data-prism>custom.appwrite.io</code></pre>
</div>
<div class="clear">
<div data-ui-modal class="modal box close" data-button-text="Add Domain">
<button type="button" class="close pull-end" data-ui-modal-close=""><i class="icon-cancel"></i></button>
<p>For example:</p>
<h1>Add Domain</h1>
<div class="ide margin-bottom-small">
<pre class="line-numbers"><code class="prism language-javascript" data-prism>appwrite.myapp.com CNAME custom.appwrite.io</code></pre>
</div>
</li>
<form
data-analytics-event="submit"
data-analytics-category="console"
data-analytics-label="Create Project Task"
data-service="projects.createTask"
data-scope="console"
data-event="submit"
data-success="alert,trigger,reset"
data-success-param-alert-text="Created task successfully"
data-success-param-trigger-events="projects.createTask,modal-close"
data-failure="alert"
data-failure-param-alert-text="Failed to create task"
data-failure-param-alert-classname="error">
<li>Add a CNAME record to point your subdomain to <?php echo APP_NAME; ?> API
</li>
</ol>
</div>
<input type="hidden" name="projectId" data-ls-bind="{{router.params.project}}" />
<label for="name">Domain Name</label>
<input type="text" class="full-width" id="domain" name="domain" placeholder="appwrite.example.com" required autocomplete="off" />
<div class="info margin-top margin-bottom">
<div class="text-bold margin-bottom-small">Setup & Verify your Domain</div>
<p>Add the following DNS records to your DNS provider settings to setup and verify your new custom domain.</p>
<ol>
<li>
<p>Add a CNAME record to point your subdomain to <?php echo APP_NAME; ?> with the following value:</p>
<div class="ide margin-bottom-small">
<pre class="line-numbers"><code class="prism language-javascript" data-prism>custom.appwrite.io</code></pre>
</div>
<p>For example:</p>
<div class="ide margin-bottom-small">
<pre class="line-numbers"><code class="prism language-javascript" data-prism>appwrite.myapp.com CNAME custom.appwrite.io</code></pre>
</div>
</li>
<li>Add a CNAME record to point your subdomain to <?php echo APP_NAME; ?> API
</li>
</ol>
</div>
<button type="submit">Create</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</form>
<button type="submit">Create</button> &nbsp; <button data-ui-modal-close="" type="button" class="reverse">Cancel</button>
</form>
</div>
</div>
</div>
</div>
<?php endif; ?>
</li>
<li data-state="/console/settings/members?project={{router.params.project}}">
<h2>Members</h2>

View file

@ -20,7 +20,7 @@
<li data-state="/console/users/view?id={{router.params.id}}&project={{router.params.project}}">
<h2>General</h2>
<div data-ls-if="{{user.status}} === <?php echo \Auth\Auth::USER_STATUS_BLOCKED; ?>" style="display: none" class="box padding-small danger margin-bottom-xxl">
<div data-ls-if="{{user.status}} === <?php echo \Auth\Auth::USER_STATUS_BLOCKED; ?>" style="display: none" class="box padding-small danger margin-bottom-xxl text-align-center">
This user account is blocked.
</div>

View file

@ -37,7 +37,7 @@ if(!empty($platforms)) {
<link rel="manifest" href="/manifest.json">
<title><?php echo $this->getParam('title', ''); ?></title>
<meta name="description" content="<?php echo $this->getParam('description', ''); ?>" />
<link rel="stylesheet" media="all" type="text/css" href="/dist/styles/default-<?php echo Locale::getText('settings.direction'); ?>.css?v=2.<?php echo $version; ?>" />
<link rel="stylesheet" media="all" type="text/css" href="/dist/styles/default-<?php echo Locale::getText('settings.direction'); ?>.css?v=3.<?php echo $version; ?>" />
<link rel="icon" type="image/png" href="<?php echo $this->escape($this->getParam('icon', '')); ?>?v=1" />
<link href="https://fonts.googleapis.com/css?family=Poppins:100,300,400,500,600" rel="stylesheet">
<link rel="apple-touch-icon" href="/images/apple.png">

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -287,6 +287,7 @@
padding-bottom: 0;
border: none;
margin-bottom: 0 !important;
box-shadow: 0 0 10px rgba(0,0,0,.1);
a {
border-top: solid 1px var(--config-console-nav-border);