Skip to content
Snippets Groups Projects
Commit 4a4159f2 authored by Kyle Doherty's avatar Kyle Doherty
Browse files

kill unused files

parent db44cd88
Branches
Tags
No related merge requests found
<cv-setup-header
text="Define your data.">
</cv-setup-header>
<h3 class="text-centered mb4">We'll get your data linked and labeled to make exploring easier.</h3>
<div class="border-bottom mt4 col col-sm-12 col-md-10 offset-md-1">
<ul class="flex col col-sm-12 col-md-8 offset-md-2">
<li class="flex-1 p2 border-left bg-white border-top border-right text-centered"
ng-class="{'text-brand bg-brand-light border-brand' : currentTab == 'suggestions'}"
ng-click="currentTab = 'suggestions'">
Suggestions
</li>
<li class="flex-1 p2 border-left bg-white border-right border-top text-centered"
ng-class="{'text-brand bg-brand-light border-brand' : currentTab == 'original' }"
ng-click="currentTab = 'original'">
Original
</li>
</ul>
</div>
<div class="bg-white col col-sm-12 col-md-8 offset-md-2 bordered shadowed mt4" ng-if="currentTab == 'suggestions'">
<accordion close-others="oneAtATime">
<ul>
<li class="p2 border-bottom" ng-repeat="ingestion in ingestedData">
<h3>
<input class="input text-brand" type="text" value="{{ingestion.suggestedName}}"> data lives in
<div class="inline-block Dropdown" dropdown on-toggle="toggle(open)">
<span class="text-brand" dropdown-toggle>{{ingestion.originalName}}
<cv-chevron-down-icon width="16px" height="16px"></cv-chevron-down-icon>
</span>
<ul class="Dropdown-content">
<li ng-repeat="ingestion in ingestedData">
{{ingestion.originalName}}
</li>
</ul>
</div>
</h3>
<h5 class="mt2">{{ingestion.suggestedName}} have
<ul class="inline-block ml1">
<li class="inline-block mr1 bordered p1" ng-repeat="entity in ingestedData" ng-if="entity.suggestedName != ingestion.suggestedName">
{{entity.suggestedName}}
</li>
</ul>
</h4>
<div class="border-top">
<accordion-group heading="Edit table metadata">
DATA TABLE
</accordion-group>
</div>
</li>
<li class="p2">
<h2><input class="input" placeholder="" type="text"> data lives in </h2>
</li>
</ul>
</accordion>
<div class="text-centered border-top py2">
<cv-step-button destination="/setup/profile"
text="Save and continue">
</cv-step-button>
</div>
</div>
<cv-setup-header
text="{{headerText}}">
</cv-setup-header>
<div class="layout-centered flex-column col col-sm-12 col-md-8 offset-md-2">
<div class="text-centered text-brand" ng-hide="isIngested">
<cv-loading-icon></cv-loading-icon>
</div>
<div class="text-centered" ng-show="isIngested">
<cv-step-button destination="/setup/entities/">
</cv-step-button>
</div>
</div>
<cv-setup-header
text="Create your account.">
</cv-setup-header>
<div>
<input class="input block" type="text" placeholder="Your first name" ng-model="newUser.firstName" autofocus>
<input class="input block" type="text" placeholder="Your last name" ng-model="newUser.lastName" autofocus>
<input class="input block" type="text" placeholder="Your company email address" ng-model="newUser.email">
<input class="input block" type="password" placeholder="Create a password." ng-model="newUser.password">
<input class="input block" type="password" placeholder="Confirm your new passoword" ng-model="newUser.repeated_password">
<a class="Button Button--primary"
ng-click="createAdmin(newUser)">
Save and continue
</a>
<div>{{errors}}</div>
</div>
<section class="SetupSubNav">
<div class="SetupWrapper">
<div class="SetupBreadcrumbs">
<ul>
<li class="inline-block text-grey-3"><a class="Breadcrumb" href="/setup/team">Team</a></li>
</ul>
</div>
</div>
</section>
<section class="SetupOffset">
<div class="AdminContent AdminContent-shallow">
<div class="border-bottom">
<input class="input borderless flex-1" type="text" placeholder="Team member's email address" ng-model="inviteeEamil">
<a class="Button Button--primary ml1"
href="#"
ng-click="addInvitee(inviteeEamil)">
Add
</a>
</div>
<ul ng-if="users.length > 0">
<li ng-repeat="user in users track by $index">
<cv-user-cell user="user">
</cv-user-cell>
</li>
</ul>
</div>
</div>
</section>
<div class="SetupBar">
<div ng-show="databases.length > 0">
<cv-step-button
text="Next"
destination="/setup/team">
</cv-step-button>
</div>
</div>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment