{namespace registry.soy.registrar.console autoescape="strict"} /** * Main registrar page. We use a single page architecture (SPA) so content is * filled in dynamically into reg-app element via JS rendering of Component.soy * and other templates within it. */ {template .main} {@param xsrfToken: string} /** Security token. */ {@param clientId: string} /** Registrar client identifier. */ {@param username: string} /** Arbitrary username to display. */ {@param isAdmin: bool} /** Is this user an App Engine account admin? */ {@param logoutUrl: string} /** Generated URL for logging out of Google. */ {@param showPaymentLink: bool} {call registry.soy.console.header} {param app: 'registrar' /} {param subtitle: 'Registrar Console' /} {/call} {call registry.soy.console.googlebar data="all" /}
{call .navbar_ data="all" /}
{switch DEBUG} {case google.registry.ui.ConsoleDebug.PRODUCTION} {if $isAdmin} {else} {/if} {case google.registry.ui.ConsoleDebug.DEBUG} {case google.registry.ui.ConsoleDebug.RAW} {/switch} {if isNonnull(DEBUG)} {/if} {/template} /** Sidebar nav. Ids on each elt for testing only. */ {template .navbar_ private="true"} {@param showPaymentLink: bool}
{/template} /** * Feature disabled */ {template .disabled} {call registry.soy.console.header} {param app: 'registrar' /} {param subtitle: 'Console Disabled' /} {/call}
GoogleRegistry

Console is disabled

The Registrar Console of the Google Registry is temporarily disabled. Please contact your customer service representative for more information.

{/template} /** * Who goes thar?! */ {template .whoareyou} {@param username: string} /** Arbitrary username to display. */ {@param logoutUrl: string} /** Generated URL for logging out of Google. */ {call registry.soy.console.header} {param app: 'registrar' /} {param subtitle: 'Please Login' /} {/call}
GoogleRegistry

You need permission

The account you are logged in as is not associated with Google Registry. Please contact your customer service representative or switch to an account associated with Google Registry.

You are signed in as {$username}.

Logout and switch to another account
{/template} /** Welcome text and nav. */ {template .dashboard}

Welcome to the Google Registry Registrar ConsoleBETA

This console can help you manage your relationship with Google Registry and allow self-service for key operations.

Access Resources

Use Google Drive to view
onboarding FAQs, technical
documentation & billing reports.

Manage Settings

Security, WHOIS & contact
settings are easy to view and edit.

Contact Us

View important phone & email
contact information for
Google Registry.

We're hard at work creating new features for the console. Stay tuned for updates!

{/template} /** Contact us. */ {template .contactUs} {@param? phonePasscode: string}

Contact us

Our support team can assist you with any technical or operational questions you may have regarding our registry services.

registry-integration@google.com
For help with OT&E sandbox and certification, or new technical requirements for any of our new TLD launches.

registry-support@google.com
For general purpose questions once you are integrated with Google Registry. If the issue is urgent, please put "Urgent" in the email title.

Note: You may receive occasional service announcements via registrar-announcement@google.com. You will not be able to reply to those messages.


For general support inquiries 24x7

Please be ready with your account name and telephone passcode when contacting us by phone.

Your telephone passcode is: {if (isNonnull($phonePasscode))} {$phonePasscode} {else} pending allocation {/if}

Call us at:

+1 (404) 978 8419

{/template} /** Resources and billing links. */ {template .resources} {@param? driveFolderId: string}

Resources & billing

Google Registry uses Google Drive to share important documentation.

TLD information

Find onboarding FAQs & technical documentation in this folder.

View TLD information on Google Drive

Billing details

Find information on all transaction activity behind your monthly invoices in this folder.

{if (isNonnull($driveFolderId))} View billing details on Google Drive {else} Your billing folder is pending allocation. {/if}

{/template} /** Loading page. */ {template .loading} [Loading...] {/template}