google-nomulus/java/google/registry/ui/soy/Console.soy
Michael Muller c458c05801 Rename Java packages to use the .google TLD
The dark lord Gosling designed the Java package naming system so that
ownership flows from the DNS system. Since we own the domain name
registry.google, it seems only appropriate that we should use
google.registry as our package name.
2016-05-13 20:04:42 -04:00

157 lines
5.1 KiB
Text

{namespace registry.soy.console autoescape="strict"}
/**
* Common header fragment.
*/
{template .header}
{@param app: string} /** App identifier, e.g. 'admin', 'registrar'. */
{@param? subtitle: string} /** Extra stuff to put in {@code <title>}. */
<!doctype html>
<meta charset="utf-8">
{literal}<!--
CHARLESTON ROAD REGISTRY SHARED REGISTRATION SYSTEM
ICANN-GTLD-AGB-20120604
_____ _
| __ \ (_)
| | | | ___ _ __ ___ __ _ _ _ __
| | | |/ _ \| '_ ` _ \ / _` | | '_ \
| |__| | (_) | | | | | | (_| | | | | |
|_____/ \___/|_| |_| |_|\__,_|_|_| |_|
| __ \ (_) | |
| |__) |___ __ _ _ ___| |_ _ __ _ _
| _ // _ \/ _` | / __| __| '__| | | |
| | \ \ __/ (_| | \__ \ |_| | | |_| |
|_| \_\___|\__, |_|___/\__|_| \__, |
__/ | __/ |
|___/ |___/
-->{/literal}
<title>Domain Registry {if isNonnull($subtitle)} - {$subtitle}{/if}</title>
<link rel="icon" href="/assets/images/ribbon_certified-64.png">
{switch DEBUG}
{case google.registry.ui.ConsoleDebug.PRODUCTION}
<link rel="stylesheet" href="/assets/css/{$app}_bin.css">
{case google.registry.ui.ConsoleDebug.DEBUG}
<link rel="stylesheet" href="/assets/css/{$app}_dbg.css">
{case google.registry.ui.ConsoleDebug.RAW}
{if $app == 'admin'}
<link rel="stylesheet"
href="/assets/sources/java/google/registry/ui/css/admin_imports_raw.css">
{else}
<link rel="stylesheet"
href="/assets/sources/java/google/registry/ui/css/registrar_imports_raw.css">
{/if}
{default}
<!-- No DEBUG option set. -->
{/switch}
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300">
{/template}
/**
* Happy little googley bar.
*/
{template .googlebar}
{@param username: string}
{@param logoutUrl: string}
<div id="kd-googlebar" role="banner">
<a class="{css logo}" href="/registrar">
<img src="/assets/images/glogo_black.png" alt="Google">Registry
</a>
<div id="kd-search">
<input id="kd-searchfield"
name="kd-searchfield"
type="text"
placeholder="Search using format 'contact/id'"
x-webkit-speech>
<a id="kd-searchbutton"
class="{css kd-button} {css kd-button-submit}"
style="-webkit-user-select: none;">
<img width="21" height="21" alt="Search White"
src="/assets/images/icons/svg/search.svg">
</a>
</div>
<div class="{css kd-butterbar}">
<p>
<span class="{css kd-butterbar-text}"></span>{sp}
<a class="{css kd-butterbar-dismiss}">Dismiss</a>
</p>
</div>
<div id="kd-social" class="{css kd-buttonbar} {css right}">
<span class="{css kd-name} {css mobile-hide} {css x-crush-hide}">
{$username}{sp}
<a href="{$logoutUrl}" tabindex="-1">Sign out</a>
</span>
</div>
</div>
{/template}
/** Appbar add/back, edit/cancel appbar. */
{template .appbarButtons}
<div id="reg-app-buttons" class="{css kd-buttonbar} {css left}">
<button id="reg-app-btn-add"
type="button"
class="{css kd-button} {css kd-button-submit} {css hidden}">
Add</button>
<div id="reg-app-btns-edit" class="{css hidden}">
<button id="reg-app-btn-edit"
type="button"
class="{css kd-button} {css kd-button-submit}">
Edit</button>
<button id="reg-app-btn-back" type="button" class="{css kd-button}">
Back</button>
</div>
<div id="reg-app-btns-save" class="{css hidden}">
<button id="reg-app-btn-save"
type="button"
class="{css kd-button} {css kd-button-submit}">
Save</button>
<button id="reg-app-btn-cancel" type="button" class="{css kd-button}">
Cancel</button>
</div>
</div>
{/template}
/**
* Create button for domain, contact and host.
*/
{template .navCreateButton}
<a id="reg-create-button"
class="{css kd-button} {css kd-button-action} {css kd-menubutton}"
style="-webkit-user-select: none;">
<span class="{css label}">Create</span>
<span class="{css kd-disclosureindicator}"></span>
<ul class="{css kd-menulist}" style="top: 27px;">
<li class="{css kd-menulistitem}"
style="-webkit-user-select: none;"
id="reg-menu-domain-create">Domain
<li class="{css kd-menulistitem}"
style="-webkit-user-select: none;"
id="reg-menu-contact-create">Contact
<li class="{css kd-menulistitem}"
style="-webkit-user-select: none;"
id="reg-menu-host-create">Host
</ul>
</a>
{/template}
/**
* Legal notices included as footer.
*/
{template .footer}
<div class="{css pageFooter} {css clearfix}">
<ul class="{css linklist} {css right}">
<li>
©2016 Google
<li>
<a href="https://www.registry.google/about/privacy.html">Privacy</a>
<li>
<a href="https://www.google.com/intl/en/policies/terms/">Terms</a>
</ul>
</div>
{/template}