Removed included web vault.
Now that docker automatically downloads the web-vault, keeping it in the repo doesn't make sense. Added error message in case someone tries to run the application directly without the web-vault instaled..
							
								
								
									
										4
									
								
								.gitignore
									
										
									
									
										vendored
									
									
								
							
							
						
						| 
						 | 
				
			
			@ -11,3 +11,7 @@ data
 | 
			
		|||
 | 
			
		||||
# Environment file
 | 
			
		||||
# .env
 | 
			
		||||
 | 
			
		||||
# Web vault
 | 
			
		||||
web-vault
 | 
			
		||||
!web-vault/settings.Production.json
 | 
			
		||||
| 
						 | 
				
			
			@ -39,7 +39,7 @@ cargo run
 | 
			
		|||
cargo build
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
## How to update the web-vault used
 | 
			
		||||
## How to install the web-vault locally
 | 
			
		||||
If you're using docker image, you can just update `VAULT_VERSION` variable in Dockerfile and rebuild the image.
 | 
			
		||||
 | 
			
		||||
Install `node.js` and either `yarn` or `npm` (usually included with node)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										15
									
								
								src/main.rs
									
										
									
									
									
								
							
							
						
						| 
						 | 
				
			
			@ -51,13 +51,12 @@ fn init_rocket() -> Rocket {
 | 
			
		|||
embed_migrations!();
 | 
			
		||||
 | 
			
		||||
fn main() {
 | 
			
		||||
    println!("{:#?}", *CONFIG);
 | 
			
		||||
 | 
			
		||||
    // Make sure the database is up to date (create if it doesn't exist, or run the migrations)
 | 
			
		||||
    let connection = db::get_connection().expect("Can't conect to DB");
 | 
			
		||||
    embedded_migrations::run_with_output(&connection, &mut io::stdout()).expect("Can't run migrations");
 | 
			
		||||
 | 
			
		||||
    check_rsa_keys();
 | 
			
		||||
    check_web_vault();
 | 
			
		||||
 | 
			
		||||
    init_rocket().launch();
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -108,6 +107,18 @@ fn check_rsa_keys() {
 | 
			
		|||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
fn check_web_vault() {
 | 
			
		||||
    use std::path::Path;
 | 
			
		||||
    use std::process::exit;
 | 
			
		||||
 | 
			
		||||
    let index_path = Path::new(&CONFIG.web_vault_folder).join("index.html");
 | 
			
		||||
 | 
			
		||||
    if !index_path.exists() {
 | 
			
		||||
        println!("Web vault is not found. Please follow the steps in the README to install it");
 | 
			
		||||
        exit(1);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
lazy_static! {
 | 
			
		||||
    // Load the config from .env or from environment variables
 | 
			
		||||
    static ref CONFIG: Config = Config::load();
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,674 +0,0 @@
 | 
			
		|||
                    GNU GENERAL PUBLIC LICENSE
 | 
			
		||||
                       Version 3, 29 June 2007
 | 
			
		||||
 | 
			
		||||
 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
 | 
			
		||||
 Everyone is permitted to copy and distribute verbatim copies
 | 
			
		||||
 of this license document, but changing it is not allowed.
 | 
			
		||||
 | 
			
		||||
                            Preamble
 | 
			
		||||
 | 
			
		||||
  The GNU General Public License is a free, copyleft license for
 | 
			
		||||
software and other kinds of works.
 | 
			
		||||
 | 
			
		||||
  The licenses for most software and other practical works are designed
 | 
			
		||||
to take away your freedom to share and change the works.  By contrast,
 | 
			
		||||
the GNU General Public License is intended to guarantee your freedom to
 | 
			
		||||
share and change all versions of a program--to make sure it remains free
 | 
			
		||||
software for all its users.  We, the Free Software Foundation, use the
 | 
			
		||||
GNU General Public License for most of our software; it applies also to
 | 
			
		||||
any other work released this way by its authors.  You can apply it to
 | 
			
		||||
your programs, too.
 | 
			
		||||
 | 
			
		||||
  When we speak of free software, we are referring to freedom, not
 | 
			
		||||
price.  Our General Public Licenses are designed to make sure that you
 | 
			
		||||
have the freedom to distribute copies of free software (and charge for
 | 
			
		||||
them if you wish), that you receive source code or can get it if you
 | 
			
		||||
want it, that you can change the software or use pieces of it in new
 | 
			
		||||
free programs, and that you know you can do these things.
 | 
			
		||||
 | 
			
		||||
  To protect your rights, we need to prevent others from denying you
 | 
			
		||||
these rights or asking you to surrender the rights.  Therefore, you have
 | 
			
		||||
certain responsibilities if you distribute copies of the software, or if
 | 
			
		||||
you modify it: responsibilities to respect the freedom of others.
 | 
			
		||||
 | 
			
		||||
  For example, if you distribute copies of such a program, whether
 | 
			
		||||
gratis or for a fee, you must pass on to the recipients the same
 | 
			
		||||
freedoms that you received.  You must make sure that they, too, receive
 | 
			
		||||
or can get the source code.  And you must show them these terms so they
 | 
			
		||||
know their rights.
 | 
			
		||||
 | 
			
		||||
  Developers that use the GNU GPL protect your rights with two steps:
 | 
			
		||||
(1) assert copyright on the software, and (2) offer you this License
 | 
			
		||||
giving you legal permission to copy, distribute and/or modify it.
 | 
			
		||||
 | 
			
		||||
  For the developers' and authors' protection, the GPL clearly explains
 | 
			
		||||
that there is no warranty for this free software.  For both users' and
 | 
			
		||||
authors' sake, the GPL requires that modified versions be marked as
 | 
			
		||||
changed, so that their problems will not be attributed erroneously to
 | 
			
		||||
authors of previous versions.
 | 
			
		||||
 | 
			
		||||
  Some devices are designed to deny users access to install or run
 | 
			
		||||
modified versions of the software inside them, although the manufacturer
 | 
			
		||||
can do so.  This is fundamentally incompatible with the aim of
 | 
			
		||||
protecting users' freedom to change the software.  The systematic
 | 
			
		||||
pattern of such abuse occurs in the area of products for individuals to
 | 
			
		||||
use, which is precisely where it is most unacceptable.  Therefore, we
 | 
			
		||||
have designed this version of the GPL to prohibit the practice for those
 | 
			
		||||
products.  If such problems arise substantially in other domains, we
 | 
			
		||||
stand ready to extend this provision to those domains in future versions
 | 
			
		||||
of the GPL, as needed to protect the freedom of users.
 | 
			
		||||
 | 
			
		||||
  Finally, every program is threatened constantly by software patents.
 | 
			
		||||
States should not allow patents to restrict development and use of
 | 
			
		||||
software on general-purpose computers, but in those that do, we wish to
 | 
			
		||||
avoid the special danger that patents applied to a free program could
 | 
			
		||||
make it effectively proprietary.  To prevent this, the GPL assures that
 | 
			
		||||
patents cannot be used to render the program non-free.
 | 
			
		||||
 | 
			
		||||
  The precise terms and conditions for copying, distribution and
 | 
			
		||||
modification follow.
 | 
			
		||||
 | 
			
		||||
                       TERMS AND CONDITIONS
 | 
			
		||||
 | 
			
		||||
  0. Definitions.
 | 
			
		||||
 | 
			
		||||
  "This License" refers to version 3 of the GNU General Public License.
 | 
			
		||||
 | 
			
		||||
  "Copyright" also means copyright-like laws that apply to other kinds of
 | 
			
		||||
works, such as semiconductor masks.
 | 
			
		||||
 | 
			
		||||
  "The Program" refers to any copyrightable work licensed under this
 | 
			
		||||
License.  Each licensee is addressed as "you".  "Licensees" and
 | 
			
		||||
"recipients" may be individuals or organizations.
 | 
			
		||||
 | 
			
		||||
  To "modify" a work means to copy from or adapt all or part of the work
 | 
			
		||||
in a fashion requiring copyright permission, other than the making of an
 | 
			
		||||
exact copy.  The resulting work is called a "modified version" of the
 | 
			
		||||
earlier work or a work "based on" the earlier work.
 | 
			
		||||
 | 
			
		||||
  A "covered work" means either the unmodified Program or a work based
 | 
			
		||||
on the Program.
 | 
			
		||||
 | 
			
		||||
  To "propagate" a work means to do anything with it that, without
 | 
			
		||||
permission, would make you directly or secondarily liable for
 | 
			
		||||
infringement under applicable copyright law, except executing it on a
 | 
			
		||||
computer or modifying a private copy.  Propagation includes copying,
 | 
			
		||||
distribution (with or without modification), making available to the
 | 
			
		||||
public, and in some countries other activities as well.
 | 
			
		||||
 | 
			
		||||
  To "convey" a work means any kind of propagation that enables other
 | 
			
		||||
parties to make or receive copies.  Mere interaction with a user through
 | 
			
		||||
a computer network, with no transfer of a copy, is not conveying.
 | 
			
		||||
 | 
			
		||||
  An interactive user interface displays "Appropriate Legal Notices"
 | 
			
		||||
to the extent that it includes a convenient and prominently visible
 | 
			
		||||
feature that (1) displays an appropriate copyright notice, and (2)
 | 
			
		||||
tells the user that there is no warranty for the work (except to the
 | 
			
		||||
extent that warranties are provided), that licensees may convey the
 | 
			
		||||
work under this License, and how to view a copy of this License.  If
 | 
			
		||||
the interface presents a list of user commands or options, such as a
 | 
			
		||||
menu, a prominent item in the list meets this criterion.
 | 
			
		||||
 | 
			
		||||
  1. Source Code.
 | 
			
		||||
 | 
			
		||||
  The "source code" for a work means the preferred form of the work
 | 
			
		||||
for making modifications to it.  "Object code" means any non-source
 | 
			
		||||
form of a work.
 | 
			
		||||
 | 
			
		||||
  A "Standard Interface" means an interface that either is an official
 | 
			
		||||
standard defined by a recognized standards body, or, in the case of
 | 
			
		||||
interfaces specified for a particular programming language, one that
 | 
			
		||||
is widely used among developers working in that language.
 | 
			
		||||
 | 
			
		||||
  The "System Libraries" of an executable work include anything, other
 | 
			
		||||
than the work as a whole, that (a) is included in the normal form of
 | 
			
		||||
packaging a Major Component, but which is not part of that Major
 | 
			
		||||
Component, and (b) serves only to enable use of the work with that
 | 
			
		||||
Major Component, or to implement a Standard Interface for which an
 | 
			
		||||
implementation is available to the public in source code form.  A
 | 
			
		||||
"Major Component", in this context, means a major essential component
 | 
			
		||||
(kernel, window system, and so on) of the specific operating system
 | 
			
		||||
(if any) on which the executable work runs, or a compiler used to
 | 
			
		||||
produce the work, or an object code interpreter used to run it.
 | 
			
		||||
 | 
			
		||||
  The "Corresponding Source" for a work in object code form means all
 | 
			
		||||
the source code needed to generate, install, and (for an executable
 | 
			
		||||
work) run the object code and to modify the work, including scripts to
 | 
			
		||||
control those activities.  However, it does not include the work's
 | 
			
		||||
System Libraries, or general-purpose tools or generally available free
 | 
			
		||||
programs which are used unmodified in performing those activities but
 | 
			
		||||
which are not part of the work.  For example, Corresponding Source
 | 
			
		||||
includes interface definition files associated with source files for
 | 
			
		||||
the work, and the source code for shared libraries and dynamically
 | 
			
		||||
linked subprograms that the work is specifically designed to require,
 | 
			
		||||
such as by intimate data communication or control flow between those
 | 
			
		||||
subprograms and other parts of the work.
 | 
			
		||||
 | 
			
		||||
  The Corresponding Source need not include anything that users
 | 
			
		||||
can regenerate automatically from other parts of the Corresponding
 | 
			
		||||
Source.
 | 
			
		||||
 | 
			
		||||
  The Corresponding Source for a work in source code form is that
 | 
			
		||||
same work.
 | 
			
		||||
 | 
			
		||||
  2. Basic Permissions.
 | 
			
		||||
 | 
			
		||||
  All rights granted under this License are granted for the term of
 | 
			
		||||
copyright on the Program, and are irrevocable provided the stated
 | 
			
		||||
conditions are met.  This License explicitly affirms your unlimited
 | 
			
		||||
permission to run the unmodified Program.  The output from running a
 | 
			
		||||
covered work is covered by this License only if the output, given its
 | 
			
		||||
content, constitutes a covered work.  This License acknowledges your
 | 
			
		||||
rights of fair use or other equivalent, as provided by copyright law.
 | 
			
		||||
 | 
			
		||||
  You may make, run and propagate covered works that you do not
 | 
			
		||||
convey, without conditions so long as your license otherwise remains
 | 
			
		||||
in force.  You may convey covered works to others for the sole purpose
 | 
			
		||||
of having them make modifications exclusively for you, or provide you
 | 
			
		||||
with facilities for running those works, provided that you comply with
 | 
			
		||||
the terms of this License in conveying all material for which you do
 | 
			
		||||
not control copyright.  Those thus making or running the covered works
 | 
			
		||||
for you must do so exclusively on your behalf, under your direction
 | 
			
		||||
and control, on terms that prohibit them from making any copies of
 | 
			
		||||
your copyrighted material outside their relationship with you.
 | 
			
		||||
 | 
			
		||||
  Conveying under any other circumstances is permitted solely under
 | 
			
		||||
the conditions stated below.  Sublicensing is not allowed; section 10
 | 
			
		||||
makes it unnecessary.
 | 
			
		||||
 | 
			
		||||
  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
 | 
			
		||||
 | 
			
		||||
  No covered work shall be deemed part of an effective technological
 | 
			
		||||
measure under any applicable law fulfilling obligations under article
 | 
			
		||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
 | 
			
		||||
similar laws prohibiting or restricting circumvention of such
 | 
			
		||||
measures.
 | 
			
		||||
 | 
			
		||||
  When you convey a covered work, you waive any legal power to forbid
 | 
			
		||||
circumvention of technological measures to the extent such circumvention
 | 
			
		||||
is effected by exercising rights under this License with respect to
 | 
			
		||||
the covered work, and you disclaim any intention to limit operation or
 | 
			
		||||
modification of the work as a means of enforcing, against the work's
 | 
			
		||||
users, your or third parties' legal rights to forbid circumvention of
 | 
			
		||||
technological measures.
 | 
			
		||||
 | 
			
		||||
  4. Conveying Verbatim Copies.
 | 
			
		||||
 | 
			
		||||
  You may convey verbatim copies of the Program's source code as you
 | 
			
		||||
receive it, in any medium, provided that you conspicuously and
 | 
			
		||||
appropriately publish on each copy an appropriate copyright notice;
 | 
			
		||||
keep intact all notices stating that this License and any
 | 
			
		||||
non-permissive terms added in accord with section 7 apply to the code;
 | 
			
		||||
keep intact all notices of the absence of any warranty; and give all
 | 
			
		||||
recipients a copy of this License along with the Program.
 | 
			
		||||
 | 
			
		||||
  You may charge any price or no price for each copy that you convey,
 | 
			
		||||
and you may offer support or warranty protection for a fee.
 | 
			
		||||
 | 
			
		||||
  5. Conveying Modified Source Versions.
 | 
			
		||||
 | 
			
		||||
  You may convey a work based on the Program, or the modifications to
 | 
			
		||||
produce it from the Program, in the form of source code under the
 | 
			
		||||
terms of section 4, provided that you also meet all of these conditions:
 | 
			
		||||
 | 
			
		||||
    a) The work must carry prominent notices stating that you modified
 | 
			
		||||
    it, and giving a relevant date.
 | 
			
		||||
 | 
			
		||||
    b) The work must carry prominent notices stating that it is
 | 
			
		||||
    released under this License and any conditions added under section
 | 
			
		||||
    7.  This requirement modifies the requirement in section 4 to
 | 
			
		||||
    "keep intact all notices".
 | 
			
		||||
 | 
			
		||||
    c) You must license the entire work, as a whole, under this
 | 
			
		||||
    License to anyone who comes into possession of a copy.  This
 | 
			
		||||
    License will therefore apply, along with any applicable section 7
 | 
			
		||||
    additional terms, to the whole of the work, and all its parts,
 | 
			
		||||
    regardless of how they are packaged.  This License gives no
 | 
			
		||||
    permission to license the work in any other way, but it does not
 | 
			
		||||
    invalidate such permission if you have separately received it.
 | 
			
		||||
 | 
			
		||||
    d) If the work has interactive user interfaces, each must display
 | 
			
		||||
    Appropriate Legal Notices; however, if the Program has interactive
 | 
			
		||||
    interfaces that do not display Appropriate Legal Notices, your
 | 
			
		||||
    work need not make them do so.
 | 
			
		||||
 | 
			
		||||
  A compilation of a covered work with other separate and independent
 | 
			
		||||
works, which are not by their nature extensions of the covered work,
 | 
			
		||||
and which are not combined with it such as to form a larger program,
 | 
			
		||||
in or on a volume of a storage or distribution medium, is called an
 | 
			
		||||
"aggregate" if the compilation and its resulting copyright are not
 | 
			
		||||
used to limit the access or legal rights of the compilation's users
 | 
			
		||||
beyond what the individual works permit.  Inclusion of a covered work
 | 
			
		||||
in an aggregate does not cause this License to apply to the other
 | 
			
		||||
parts of the aggregate.
 | 
			
		||||
 | 
			
		||||
  6. Conveying Non-Source Forms.
 | 
			
		||||
 | 
			
		||||
  You may convey a covered work in object code form under the terms
 | 
			
		||||
of sections 4 and 5, provided that you also convey the
 | 
			
		||||
machine-readable Corresponding Source under the terms of this License,
 | 
			
		||||
in one of these ways:
 | 
			
		||||
 | 
			
		||||
    a) Convey the object code in, or embodied in, a physical product
 | 
			
		||||
    (including a physical distribution medium), accompanied by the
 | 
			
		||||
    Corresponding Source fixed on a durable physical medium
 | 
			
		||||
    customarily used for software interchange.
 | 
			
		||||
 | 
			
		||||
    b) Convey the object code in, or embodied in, a physical product
 | 
			
		||||
    (including a physical distribution medium), accompanied by a
 | 
			
		||||
    written offer, valid for at least three years and valid for as
 | 
			
		||||
    long as you offer spare parts or customer support for that product
 | 
			
		||||
    model, to give anyone who possesses the object code either (1) a
 | 
			
		||||
    copy of the Corresponding Source for all the software in the
 | 
			
		||||
    product that is covered by this License, on a durable physical
 | 
			
		||||
    medium customarily used for software interchange, for a price no
 | 
			
		||||
    more than your reasonable cost of physically performing this
 | 
			
		||||
    conveying of source, or (2) access to copy the
 | 
			
		||||
    Corresponding Source from a network server at no charge.
 | 
			
		||||
 | 
			
		||||
    c) Convey individual copies of the object code with a copy of the
 | 
			
		||||
    written offer to provide the Corresponding Source.  This
 | 
			
		||||
    alternative is allowed only occasionally and noncommercially, and
 | 
			
		||||
    only if you received the object code with such an offer, in accord
 | 
			
		||||
    with subsection 6b.
 | 
			
		||||
 | 
			
		||||
    d) Convey the object code by offering access from a designated
 | 
			
		||||
    place (gratis or for a charge), and offer equivalent access to the
 | 
			
		||||
    Corresponding Source in the same way through the same place at no
 | 
			
		||||
    further charge.  You need not require recipients to copy the
 | 
			
		||||
    Corresponding Source along with the object code.  If the place to
 | 
			
		||||
    copy the object code is a network server, the Corresponding Source
 | 
			
		||||
    may be on a different server (operated by you or a third party)
 | 
			
		||||
    that supports equivalent copying facilities, provided you maintain
 | 
			
		||||
    clear directions next to the object code saying where to find the
 | 
			
		||||
    Corresponding Source.  Regardless of what server hosts the
 | 
			
		||||
    Corresponding Source, you remain obligated to ensure that it is
 | 
			
		||||
    available for as long as needed to satisfy these requirements.
 | 
			
		||||
 | 
			
		||||
    e) Convey the object code using peer-to-peer transmission, provided
 | 
			
		||||
    you inform other peers where the object code and Corresponding
 | 
			
		||||
    Source of the work are being offered to the general public at no
 | 
			
		||||
    charge under subsection 6d.
 | 
			
		||||
 | 
			
		||||
  A separable portion of the object code, whose source code is excluded
 | 
			
		||||
from the Corresponding Source as a System Library, need not be
 | 
			
		||||
included in conveying the object code work.
 | 
			
		||||
 | 
			
		||||
  A "User Product" is either (1) a "consumer product", which means any
 | 
			
		||||
tangible personal property which is normally used for personal, family,
 | 
			
		||||
or household purposes, or (2) anything designed or sold for incorporation
 | 
			
		||||
into a dwelling.  In determining whether a product is a consumer product,
 | 
			
		||||
doubtful cases shall be resolved in favor of coverage.  For a particular
 | 
			
		||||
product received by a particular user, "normally used" refers to a
 | 
			
		||||
typical or common use of that class of product, regardless of the status
 | 
			
		||||
of the particular user or of the way in which the particular user
 | 
			
		||||
actually uses, or expects or is expected to use, the product.  A product
 | 
			
		||||
is a consumer product regardless of whether the product has substantial
 | 
			
		||||
commercial, industrial or non-consumer uses, unless such uses represent
 | 
			
		||||
the only significant mode of use of the product.
 | 
			
		||||
 | 
			
		||||
  "Installation Information" for a User Product means any methods,
 | 
			
		||||
procedures, authorization keys, or other information required to install
 | 
			
		||||
and execute modified versions of a covered work in that User Product from
 | 
			
		||||
a modified version of its Corresponding Source.  The information must
 | 
			
		||||
suffice to ensure that the continued functioning of the modified object
 | 
			
		||||
code is in no case prevented or interfered with solely because
 | 
			
		||||
modification has been made.
 | 
			
		||||
 | 
			
		||||
  If you convey an object code work under this section in, or with, or
 | 
			
		||||
specifically for use in, a User Product, and the conveying occurs as
 | 
			
		||||
part of a transaction in which the right of possession and use of the
 | 
			
		||||
User Product is transferred to the recipient in perpetuity or for a
 | 
			
		||||
fixed term (regardless of how the transaction is characterized), the
 | 
			
		||||
Corresponding Source conveyed under this section must be accompanied
 | 
			
		||||
by the Installation Information.  But this requirement does not apply
 | 
			
		||||
if neither you nor any third party retains the ability to install
 | 
			
		||||
modified object code on the User Product (for example, the work has
 | 
			
		||||
been installed in ROM).
 | 
			
		||||
 | 
			
		||||
  The requirement to provide Installation Information does not include a
 | 
			
		||||
requirement to continue to provide support service, warranty, or updates
 | 
			
		||||
for a work that has been modified or installed by the recipient, or for
 | 
			
		||||
the User Product in which it has been modified or installed.  Access to a
 | 
			
		||||
network may be denied when the modification itself materially and
 | 
			
		||||
adversely affects the operation of the network or violates the rules and
 | 
			
		||||
protocols for communication across the network.
 | 
			
		||||
 | 
			
		||||
  Corresponding Source conveyed, and Installation Information provided,
 | 
			
		||||
in accord with this section must be in a format that is publicly
 | 
			
		||||
documented (and with an implementation available to the public in
 | 
			
		||||
source code form), and must require no special password or key for
 | 
			
		||||
unpacking, reading or copying.
 | 
			
		||||
 | 
			
		||||
  7. Additional Terms.
 | 
			
		||||
 | 
			
		||||
  "Additional permissions" are terms that supplement the terms of this
 | 
			
		||||
License by making exceptions from one or more of its conditions.
 | 
			
		||||
Additional permissions that are applicable to the entire Program shall
 | 
			
		||||
be treated as though they were included in this License, to the extent
 | 
			
		||||
that they are valid under applicable law.  If additional permissions
 | 
			
		||||
apply only to part of the Program, that part may be used separately
 | 
			
		||||
under those permissions, but the entire Program remains governed by
 | 
			
		||||
this License without regard to the additional permissions.
 | 
			
		||||
 | 
			
		||||
  When you convey a copy of a covered work, you may at your option
 | 
			
		||||
remove any additional permissions from that copy, or from any part of
 | 
			
		||||
it.  (Additional permissions may be written to require their own
 | 
			
		||||
removal in certain cases when you modify the work.)  You may place
 | 
			
		||||
additional permissions on material, added by you to a covered work,
 | 
			
		||||
for which you have or can give appropriate copyright permission.
 | 
			
		||||
 | 
			
		||||
  Notwithstanding any other provision of this License, for material you
 | 
			
		||||
add to a covered work, you may (if authorized by the copyright holders of
 | 
			
		||||
that material) supplement the terms of this License with terms:
 | 
			
		||||
 | 
			
		||||
    a) Disclaiming warranty or limiting liability differently from the
 | 
			
		||||
    terms of sections 15 and 16 of this License; or
 | 
			
		||||
 | 
			
		||||
    b) Requiring preservation of specified reasonable legal notices or
 | 
			
		||||
    author attributions in that material or in the Appropriate Legal
 | 
			
		||||
    Notices displayed by works containing it; or
 | 
			
		||||
 | 
			
		||||
    c) Prohibiting misrepresentation of the origin of that material, or
 | 
			
		||||
    requiring that modified versions of such material be marked in
 | 
			
		||||
    reasonable ways as different from the original version; or
 | 
			
		||||
 | 
			
		||||
    d) Limiting the use for publicity purposes of names of licensors or
 | 
			
		||||
    authors of the material; or
 | 
			
		||||
 | 
			
		||||
    e) Declining to grant rights under trademark law for use of some
 | 
			
		||||
    trade names, trademarks, or service marks; or
 | 
			
		||||
 | 
			
		||||
    f) Requiring indemnification of licensors and authors of that
 | 
			
		||||
    material by anyone who conveys the material (or modified versions of
 | 
			
		||||
    it) with contractual assumptions of liability to the recipient, for
 | 
			
		||||
    any liability that these contractual assumptions directly impose on
 | 
			
		||||
    those licensors and authors.
 | 
			
		||||
 | 
			
		||||
  All other non-permissive additional terms are considered "further
 | 
			
		||||
restrictions" within the meaning of section 10.  If the Program as you
 | 
			
		||||
received it, or any part of it, contains a notice stating that it is
 | 
			
		||||
governed by this License along with a term that is a further
 | 
			
		||||
restriction, you may remove that term.  If a license document contains
 | 
			
		||||
a further restriction but permits relicensing or conveying under this
 | 
			
		||||
License, you may add to a covered work material governed by the terms
 | 
			
		||||
of that license document, provided that the further restriction does
 | 
			
		||||
not survive such relicensing or conveying.
 | 
			
		||||
 | 
			
		||||
  If you add terms to a covered work in accord with this section, you
 | 
			
		||||
must place, in the relevant source files, a statement of the
 | 
			
		||||
additional terms that apply to those files, or a notice indicating
 | 
			
		||||
where to find the applicable terms.
 | 
			
		||||
 | 
			
		||||
  Additional terms, permissive or non-permissive, may be stated in the
 | 
			
		||||
form of a separately written license, or stated as exceptions;
 | 
			
		||||
the above requirements apply either way.
 | 
			
		||||
 | 
			
		||||
  8. Termination.
 | 
			
		||||
 | 
			
		||||
  You may not propagate or modify a covered work except as expressly
 | 
			
		||||
provided under this License.  Any attempt otherwise to propagate or
 | 
			
		||||
modify it is void, and will automatically terminate your rights under
 | 
			
		||||
this License (including any patent licenses granted under the third
 | 
			
		||||
paragraph of section 11).
 | 
			
		||||
 | 
			
		||||
  However, if you cease all violation of this License, then your
 | 
			
		||||
license from a particular copyright holder is reinstated (a)
 | 
			
		||||
provisionally, unless and until the copyright holder explicitly and
 | 
			
		||||
finally terminates your license, and (b) permanently, if the copyright
 | 
			
		||||
holder fails to notify you of the violation by some reasonable means
 | 
			
		||||
prior to 60 days after the cessation.
 | 
			
		||||
 | 
			
		||||
  Moreover, your license from a particular copyright holder is
 | 
			
		||||
reinstated permanently if the copyright holder notifies you of the
 | 
			
		||||
violation by some reasonable means, this is the first time you have
 | 
			
		||||
received notice of violation of this License (for any work) from that
 | 
			
		||||
copyright holder, and you cure the violation prior to 30 days after
 | 
			
		||||
your receipt of the notice.
 | 
			
		||||
 | 
			
		||||
  Termination of your rights under this section does not terminate the
 | 
			
		||||
licenses of parties who have received copies or rights from you under
 | 
			
		||||
this License.  If your rights have been terminated and not permanently
 | 
			
		||||
reinstated, you do not qualify to receive new licenses for the same
 | 
			
		||||
material under section 10.
 | 
			
		||||
 | 
			
		||||
  9. Acceptance Not Required for Having Copies.
 | 
			
		||||
 | 
			
		||||
  You are not required to accept this License in order to receive or
 | 
			
		||||
run a copy of the Program.  Ancillary propagation of a covered work
 | 
			
		||||
occurring solely as a consequence of using peer-to-peer transmission
 | 
			
		||||
to receive a copy likewise does not require acceptance.  However,
 | 
			
		||||
nothing other than this License grants you permission to propagate or
 | 
			
		||||
modify any covered work.  These actions infringe copyright if you do
 | 
			
		||||
not accept this License.  Therefore, by modifying or propagating a
 | 
			
		||||
covered work, you indicate your acceptance of this License to do so.
 | 
			
		||||
 | 
			
		||||
  10. Automatic Licensing of Downstream Recipients.
 | 
			
		||||
 | 
			
		||||
  Each time you convey a covered work, the recipient automatically
 | 
			
		||||
receives a license from the original licensors, to run, modify and
 | 
			
		||||
propagate that work, subject to this License.  You are not responsible
 | 
			
		||||
for enforcing compliance by third parties with this License.
 | 
			
		||||
 | 
			
		||||
  An "entity transaction" is a transaction transferring control of an
 | 
			
		||||
organization, or substantially all assets of one, or subdividing an
 | 
			
		||||
organization, or merging organizations.  If propagation of a covered
 | 
			
		||||
work results from an entity transaction, each party to that
 | 
			
		||||
transaction who receives a copy of the work also receives whatever
 | 
			
		||||
licenses to the work the party's predecessor in interest had or could
 | 
			
		||||
give under the previous paragraph, plus a right to possession of the
 | 
			
		||||
Corresponding Source of the work from the predecessor in interest, if
 | 
			
		||||
the predecessor has it or can get it with reasonable efforts.
 | 
			
		||||
 | 
			
		||||
  You may not impose any further restrictions on the exercise of the
 | 
			
		||||
rights granted or affirmed under this License.  For example, you may
 | 
			
		||||
not impose a license fee, royalty, or other charge for exercise of
 | 
			
		||||
rights granted under this License, and you may not initiate litigation
 | 
			
		||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
 | 
			
		||||
any patent claim is infringed by making, using, selling, offering for
 | 
			
		||||
sale, or importing the Program or any portion of it.
 | 
			
		||||
 | 
			
		||||
  11. Patents.
 | 
			
		||||
 | 
			
		||||
  A "contributor" is a copyright holder who authorizes use under this
 | 
			
		||||
License of the Program or a work on which the Program is based.  The
 | 
			
		||||
work thus licensed is called the contributor's "contributor version".
 | 
			
		||||
 | 
			
		||||
  A contributor's "essential patent claims" are all patent claims
 | 
			
		||||
owned or controlled by the contributor, whether already acquired or
 | 
			
		||||
hereafter acquired, that would be infringed by some manner, permitted
 | 
			
		||||
by this License, of making, using, or selling its contributor version,
 | 
			
		||||
but do not include claims that would be infringed only as a
 | 
			
		||||
consequence of further modification of the contributor version.  For
 | 
			
		||||
purposes of this definition, "control" includes the right to grant
 | 
			
		||||
patent sublicenses in a manner consistent with the requirements of
 | 
			
		||||
this License.
 | 
			
		||||
 | 
			
		||||
  Each contributor grants you a non-exclusive, worldwide, royalty-free
 | 
			
		||||
patent license under the contributor's essential patent claims, to
 | 
			
		||||
make, use, sell, offer for sale, import and otherwise run, modify and
 | 
			
		||||
propagate the contents of its contributor version.
 | 
			
		||||
 | 
			
		||||
  In the following three paragraphs, a "patent license" is any express
 | 
			
		||||
agreement or commitment, however denominated, not to enforce a patent
 | 
			
		||||
(such as an express permission to practice a patent or covenant not to
 | 
			
		||||
sue for patent infringement).  To "grant" such a patent license to a
 | 
			
		||||
party means to make such an agreement or commitment not to enforce a
 | 
			
		||||
patent against the party.
 | 
			
		||||
 | 
			
		||||
  If you convey a covered work, knowingly relying on a patent license,
 | 
			
		||||
and the Corresponding Source of the work is not available for anyone
 | 
			
		||||
to copy, free of charge and under the terms of this License, through a
 | 
			
		||||
publicly available network server or other readily accessible means,
 | 
			
		||||
then you must either (1) cause the Corresponding Source to be so
 | 
			
		||||
available, or (2) arrange to deprive yourself of the benefit of the
 | 
			
		||||
patent license for this particular work, or (3) arrange, in a manner
 | 
			
		||||
consistent with the requirements of this License, to extend the patent
 | 
			
		||||
license to downstream recipients.  "Knowingly relying" means you have
 | 
			
		||||
actual knowledge that, but for the patent license, your conveying the
 | 
			
		||||
covered work in a country, or your recipient's use of the covered work
 | 
			
		||||
in a country, would infringe one or more identifiable patents in that
 | 
			
		||||
country that you have reason to believe are valid.
 | 
			
		||||
 | 
			
		||||
  If, pursuant to or in connection with a single transaction or
 | 
			
		||||
arrangement, you convey, or propagate by procuring conveyance of, a
 | 
			
		||||
covered work, and grant a patent license to some of the parties
 | 
			
		||||
receiving the covered work authorizing them to use, propagate, modify
 | 
			
		||||
or convey a specific copy of the covered work, then the patent license
 | 
			
		||||
you grant is automatically extended to all recipients of the covered
 | 
			
		||||
work and works based on it.
 | 
			
		||||
 | 
			
		||||
  A patent license is "discriminatory" if it does not include within
 | 
			
		||||
the scope of its coverage, prohibits the exercise of, or is
 | 
			
		||||
conditioned on the non-exercise of one or more of the rights that are
 | 
			
		||||
specifically granted under this License.  You may not convey a covered
 | 
			
		||||
work if you are a party to an arrangement with a third party that is
 | 
			
		||||
in the business of distributing software, under which you make payment
 | 
			
		||||
to the third party based on the extent of your activity of conveying
 | 
			
		||||
the work, and under which the third party grants, to any of the
 | 
			
		||||
parties who would receive the covered work from you, a discriminatory
 | 
			
		||||
patent license (a) in connection with copies of the covered work
 | 
			
		||||
conveyed by you (or copies made from those copies), or (b) primarily
 | 
			
		||||
for and in connection with specific products or compilations that
 | 
			
		||||
contain the covered work, unless you entered into that arrangement,
 | 
			
		||||
or that patent license was granted, prior to 28 March 2007.
 | 
			
		||||
 | 
			
		||||
  Nothing in this License shall be construed as excluding or limiting
 | 
			
		||||
any implied license or other defenses to infringement that may
 | 
			
		||||
otherwise be available to you under applicable patent law.
 | 
			
		||||
 | 
			
		||||
  12. No Surrender of Others' Freedom.
 | 
			
		||||
 | 
			
		||||
  If conditions are imposed on you (whether by court order, agreement or
 | 
			
		||||
otherwise) that contradict the conditions of this License, they do not
 | 
			
		||||
excuse you from the conditions of this License.  If you cannot convey a
 | 
			
		||||
covered work so as to satisfy simultaneously your obligations under this
 | 
			
		||||
License and any other pertinent obligations, then as a consequence you may
 | 
			
		||||
not convey it at all.  For example, if you agree to terms that obligate you
 | 
			
		||||
to collect a royalty for further conveying from those to whom you convey
 | 
			
		||||
the Program, the only way you could satisfy both those terms and this
 | 
			
		||||
License would be to refrain entirely from conveying the Program.
 | 
			
		||||
 | 
			
		||||
  13. Use with the GNU Affero General Public License.
 | 
			
		||||
 | 
			
		||||
  Notwithstanding any other provision of this License, you have
 | 
			
		||||
permission to link or combine any covered work with a work licensed
 | 
			
		||||
under version 3 of the GNU Affero General Public License into a single
 | 
			
		||||
combined work, and to convey the resulting work.  The terms of this
 | 
			
		||||
License will continue to apply to the part which is the covered work,
 | 
			
		||||
but the special requirements of the GNU Affero General Public License,
 | 
			
		||||
section 13, concerning interaction through a network will apply to the
 | 
			
		||||
combination as such.
 | 
			
		||||
 | 
			
		||||
  14. Revised Versions of this License.
 | 
			
		||||
 | 
			
		||||
  The Free Software Foundation may publish revised and/or new versions of
 | 
			
		||||
the GNU General Public License from time to time.  Such new versions will
 | 
			
		||||
be similar in spirit to the present version, but may differ in detail to
 | 
			
		||||
address new problems or concerns.
 | 
			
		||||
 | 
			
		||||
  Each version is given a distinguishing version number.  If the
 | 
			
		||||
Program specifies that a certain numbered version of the GNU General
 | 
			
		||||
Public License "or any later version" applies to it, you have the
 | 
			
		||||
option of following the terms and conditions either of that numbered
 | 
			
		||||
version or of any later version published by the Free Software
 | 
			
		||||
Foundation.  If the Program does not specify a version number of the
 | 
			
		||||
GNU General Public License, you may choose any version ever published
 | 
			
		||||
by the Free Software Foundation.
 | 
			
		||||
 | 
			
		||||
  If the Program specifies that a proxy can decide which future
 | 
			
		||||
versions of the GNU General Public License can be used, that proxy's
 | 
			
		||||
public statement of acceptance of a version permanently authorizes you
 | 
			
		||||
to choose that version for the Program.
 | 
			
		||||
 | 
			
		||||
  Later license versions may give you additional or different
 | 
			
		||||
permissions.  However, no additional obligations are imposed on any
 | 
			
		||||
author or copyright holder as a result of your choosing to follow a
 | 
			
		||||
later version.
 | 
			
		||||
 | 
			
		||||
  15. Disclaimer of Warranty.
 | 
			
		||||
 | 
			
		||||
  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
 | 
			
		||||
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
 | 
			
		||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
 | 
			
		||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
 | 
			
		||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 | 
			
		||||
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
 | 
			
		||||
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
 | 
			
		||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
 | 
			
		||||
 | 
			
		||||
  16. Limitation of Liability.
 | 
			
		||||
 | 
			
		||||
  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
 | 
			
		||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
 | 
			
		||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
 | 
			
		||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
 | 
			
		||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
 | 
			
		||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
 | 
			
		||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
 | 
			
		||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
 | 
			
		||||
SUCH DAMAGES.
 | 
			
		||||
 | 
			
		||||
  17. Interpretation of Sections 15 and 16.
 | 
			
		||||
 | 
			
		||||
  If the disclaimer of warranty and limitation of liability provided
 | 
			
		||||
above cannot be given local legal effect according to their terms,
 | 
			
		||||
reviewing courts shall apply local law that most closely approximates
 | 
			
		||||
an absolute waiver of all civil liability in connection with the
 | 
			
		||||
Program, unless a warranty or assumption of liability accompanies a
 | 
			
		||||
copy of the Program in return for a fee.
 | 
			
		||||
 | 
			
		||||
                     END OF TERMS AND CONDITIONS
 | 
			
		||||
 | 
			
		||||
            How to Apply These Terms to Your New Programs
 | 
			
		||||
 | 
			
		||||
  If you develop a new program, and you want it to be of the greatest
 | 
			
		||||
possible use to the public, the best way to achieve this is to make it
 | 
			
		||||
free software which everyone can redistribute and change under these terms.
 | 
			
		||||
 | 
			
		||||
  To do so, attach the following notices to the program.  It is safest
 | 
			
		||||
to attach them to the start of each source file to most effectively
 | 
			
		||||
state the exclusion of warranty; and each file should have at least
 | 
			
		||||
the "copyright" line and a pointer to where the full notice is found.
 | 
			
		||||
 | 
			
		||||
    {one line to give the program's name and a brief idea of what it does.}
 | 
			
		||||
    Copyright (C) {year}  {name of author}
 | 
			
		||||
 | 
			
		||||
    This program is free software: you can redistribute it and/or modify
 | 
			
		||||
    it under the terms of the GNU General Public License as published by
 | 
			
		||||
    the Free Software Foundation, either version 3 of the License, or
 | 
			
		||||
    (at your option) any later version.
 | 
			
		||||
 | 
			
		||||
    This program is distributed in the hope that it will be useful,
 | 
			
		||||
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
			
		||||
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
			
		||||
    GNU General Public License for more details.
 | 
			
		||||
 | 
			
		||||
    You should have received a copy of the GNU General Public License
 | 
			
		||||
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
Also add information on how to contact you by electronic and paper mail.
 | 
			
		||||
 | 
			
		||||
  If the program does terminal interaction, make it output a short
 | 
			
		||||
notice like this when it starts in an interactive mode:
 | 
			
		||||
 | 
			
		||||
    {project}  Copyright (C) {year}  {fullname}
 | 
			
		||||
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
 | 
			
		||||
    This is free software, and you are welcome to redistribute it
 | 
			
		||||
    under certain conditions; type `show c' for details.
 | 
			
		||||
 | 
			
		||||
The hypothetical commands `show w' and `show c' should show the appropriate
 | 
			
		||||
parts of the General Public License.  Of course, your program's commands
 | 
			
		||||
might be different; for a GUI interface, you would use an "about box".
 | 
			
		||||
 | 
			
		||||
  You should also get your employer (if you work as a programmer) or school,
 | 
			
		||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
 | 
			
		||||
For more information on this, and how to apply and follow the GNU GPL, see
 | 
			
		||||
<http://www.gnu.org/licenses/>.
 | 
			
		||||
 | 
			
		||||
  The GNU General Public License does not permit incorporating your program
 | 
			
		||||
into proprietary programs.  If your program is a subroutine library, you
 | 
			
		||||
may consider it more useful to permit linking proprietary applications with
 | 
			
		||||
the library.  If this is what you want to do, use the GNU Lesser General
 | 
			
		||||
Public License instead of this License.  But first, please read
 | 
			
		||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
 | 
			
		||||
| 
						 | 
				
			
			@ -1,15 +0,0 @@
 | 
			
		|||
{
 | 
			
		||||
  "trustedFacets": [
 | 
			
		||||
    {
 | 
			
		||||
      "version": {
 | 
			
		||||
        "major": 1,
 | 
			
		||||
        "minor": 0
 | 
			
		||||
      },
 | 
			
		||||
      "ids": [
 | 
			
		||||
        "https://vault.bitwarden.com",
 | 
			
		||||
        "ios:bundle-id:com.8bit.bitwarden",
 | 
			
		||||
        "android:apk-key-hash:dUGFzUzf3lmHSLBDBIv+WaFyZMI"
 | 
			
		||||
      ]
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -1,7 +0,0 @@
 | 
			
		|||
<div class="login-box">
 | 
			
		||||
    <div class="login-logo">
 | 
			
		||||
        <i class="fa fa-shield"></i> <b>bit</b>warden
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="login-box-body" ui-view>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,49 +0,0 @@
 | 
			
		|||
<p class="login-box-msg">Log in to access your vault.</p>
 | 
			
		||||
<form name="loginForm" ng-submit="loginForm.$valid && login(model)" api-form="loginPromise">
 | 
			
		||||
    <div class="callout callout-danger validation-errors" ng-show="loginForm.$errors">
 | 
			
		||||
        <h4>Errors have occurred</h4>
 | 
			
		||||
        <ul>
 | 
			
		||||
            <li ng-repeat="e in loginForm.$errors">{{e}}</li>
 | 
			
		||||
        </ul>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="form-group has-feedback" show-errors>
 | 
			
		||||
        <label for="email" class="sr-only">Email</label>
 | 
			
		||||
        <input type="email" id="email" name="Email" class="form-control" placeholder="Email" ng-model="model.email"
 | 
			
		||||
               required api-field />
 | 
			
		||||
        <span class="fa fa-envelope form-control-feedback"></span>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="form-group has-feedback" show-errors>
 | 
			
		||||
        <label for="masterPassword" class="sr-only">Master Password</label>
 | 
			
		||||
        <input type="password" id="masterPassword" name="MasterPasswordHash" class="form-control" placeholder="Master Password"
 | 
			
		||||
               ng-model="model.masterPassword"
 | 
			
		||||
               required api-field />
 | 
			
		||||
        <span class="fa fa-lock form-control-feedback"></span>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="row">
 | 
			
		||||
        <div class="col-xs-7">
 | 
			
		||||
            <div class="checkbox">
 | 
			
		||||
                <label>
 | 
			
		||||
                    <input type="checkbox" id="rememberEmail" ng-model="model.rememberEmail" /> Remember Email
 | 
			
		||||
                </label>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="col-xs-5">
 | 
			
		||||
            <button type="submit" class="btn btn-primary btn-block btn-flat" ng-disabled="loginForm.$loading">
 | 
			
		||||
                <i class="fa fa-refresh fa-spin loading-icon" ng-show="loginForm.$loading"></i>Log In
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <hr />
 | 
			
		||||
    <ul>
 | 
			
		||||
        <li>
 | 
			
		||||
            <a ui-sref="frontend.register({returnState: returnState, email: stateEmail})">
 | 
			
		||||
                Create a new account
 | 
			
		||||
            </a>
 | 
			
		||||
        </li>
 | 
			
		||||
        <li>
 | 
			
		||||
            <a ui-sref="frontend.passwordHint">
 | 
			
		||||
                Get master password hint
 | 
			
		||||
            </a>
 | 
			
		||||
        </li>
 | 
			
		||||
    </ul>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,167 +0,0 @@
 | 
			
		|||
<div ng-if="twoFactorProvider === twoFactorProviderConstants.authenticator ||
 | 
			
		||||
     twoFactorProvider === twoFactorProviderConstants.email">
 | 
			
		||||
    <p class="login-box-msg" ng-if="twoFactorProvider === twoFactorProviderConstants.authenticator">
 | 
			
		||||
        Enter the 6 digit verification code from your authenticator app.
 | 
			
		||||
    </p>
 | 
			
		||||
    <div ng-if="twoFactorProvider === twoFactorProviderConstants.email" class="text-center">
 | 
			
		||||
        <p class="login-box-msg">
 | 
			
		||||
            Enter the 6 digit verification code that was emailed to <b>{{twoFactorEmail}}</b>.
 | 
			
		||||
        </p>
 | 
			
		||||
        <p>
 | 
			
		||||
            Didn't get the email?
 | 
			
		||||
            <a href="#" stop-click ng-click="sendEmail(true)" ng-if="twoFactorProvider === twoFactorProviderConstants.email">
 | 
			
		||||
                Send it again
 | 
			
		||||
            </a>
 | 
			
		||||
        </p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <form name="twoFactorForm" ng-submit="twoFactorForm.$valid && twoFactor(token)" api-form="twoFactorPromise">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="twoFactorForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in twoFactorForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group has-feedback" show-errors>
 | 
			
		||||
            <label for="code" class="sr-only">Code</label>
 | 
			
		||||
            <input type="text" id="code" name="Code" class="form-control" placeholder="Verification code"
 | 
			
		||||
                   ng-model="token" required api-field autocomplete="off" autocorrect="off" autocapitalize="off"
 | 
			
		||||
                   spellcheck="false" />
 | 
			
		||||
            <span class="fa fa-lock form-control-feedback"></span>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-xs-7">
 | 
			
		||||
                <div class="checkbox">
 | 
			
		||||
                    <label>
 | 
			
		||||
                        <input type="checkbox" id="rememberMe" ng-model="rememberTwoFactor.checked" /> Remember Me
 | 
			
		||||
                    </label>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-xs-5">
 | 
			
		||||
                <button type="submit" class="btn btn-primary btn-block btn-flat" ng-disabled="twoFactorForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon" ng-show="twoFactorForm.$loading"></i>Log In
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </form>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div ng-if="twoFactorProvider === twoFactorProviderConstants.yubikey">
 | 
			
		||||
    <p class="login-box-msg">
 | 
			
		||||
        Complete logging in with YubiKey.
 | 
			
		||||
    </p>
 | 
			
		||||
    <form name="twoFactorForm" ng-submit="twoFactorForm.$valid && twoFactor(token)" api-form="twoFactorPromise"
 | 
			
		||||
          autocomplete="off">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="twoFactorForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in twoFactorForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <p>Insert your YubiKey into your computer's USB port, then touch its button.</p>
 | 
			
		||||
        <p>
 | 
			
		||||
            <img src="images/two-factor/yubikey.jpg" alt="" class="img-rounded img-responsive" />
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="code" class="sr-only">Token</label>
 | 
			
		||||
            <input type="password" id="code" name="Token" class="form-control" ng-model="token"
 | 
			
		||||
                   autocomplete="new-password" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-xs-7">
 | 
			
		||||
                <div class="checkbox">
 | 
			
		||||
                    <label>
 | 
			
		||||
                        <input type="checkbox" id="rememberMe" ng-model="rememberTwoFactor.checked" /> Remember Me
 | 
			
		||||
                    </label>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-xs-5">
 | 
			
		||||
                <button type="submit" class="btn btn-primary btn-block btn-flat" ng-disabled="twoFactorForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon" ng-show="twoFactorForm.$loading"></i>Log In
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </form>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div ng-if="twoFactorProvider === twoFactorProviderConstants.duo">
 | 
			
		||||
    <p class="login-box-msg">
 | 
			
		||||
        Complete logging in with Duo.
 | 
			
		||||
    </p>
 | 
			
		||||
    <form name="twoFactorForm" ng-submit="twoFactorForm.$valid && twoFactor(token)" api-form="twoFactorPromise"
 | 
			
		||||
          autocomplete="off">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="twoFactorForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in twoFactorForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div id="duoFrameWrapper">
 | 
			
		||||
            <iframe id="duo_iframe"></iframe>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-xs-7">
 | 
			
		||||
                <div class="checkbox">
 | 
			
		||||
                    <label>
 | 
			
		||||
                        <input type="checkbox" id="rememberMe" ng-model="rememberTwoFactor.checked" /> Remember Me
 | 
			
		||||
                    </label>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-xs-5">
 | 
			
		||||
                <span ng-show="twoFactorForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon"></i> Logging in...
 | 
			
		||||
                </span>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </form>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div ng-if="twoFactorProvider === twoFactorProviderConstants.u2f">
 | 
			
		||||
    <p class="login-box-msg">
 | 
			
		||||
        Complete logging in with FIDO U2F.
 | 
			
		||||
    </p>
 | 
			
		||||
    <form name="twoFactorForm" api-form="twoFactorPromise" autocomplete="off">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="twoFactorForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in twoFactorForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <p>Insert your Security Key into your computer's USB port. If it has a button, touch it.</p>
 | 
			
		||||
        <p>
 | 
			
		||||
            <img src="images/two-factor/u2fkey.jpg" alt="" class="img-rounded img-responsive" />
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-xs-7">
 | 
			
		||||
                <div class="checkbox">
 | 
			
		||||
                    <label>
 | 
			
		||||
                        <input type="checkbox" id="rememberMe" ng-model="rememberTwoFactor.checked" /> Remember Me
 | 
			
		||||
                    </label>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-xs-5">
 | 
			
		||||
                <span ng-show="twoFactorForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon"></i> Logging in...
 | 
			
		||||
                </span>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </form>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<div ng-if="twoFactorProvider === null">
 | 
			
		||||
    <p>
 | 
			
		||||
        This account has two-step login enabled, however, none of the configured two-step providers are supported by this
 | 
			
		||||
        web browser.
 | 
			
		||||
    </p>
 | 
			
		||||
    Please use a supported web browser (such as Chrome) and/or add additional providers that are better supported
 | 
			
		||||
    across web browsers (such as an authenticator app).
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<hr />
 | 
			
		||||
<ul>
 | 
			
		||||
    <li>
 | 
			
		||||
        <a stop-click href="#" ng-click="anotherMethod()">Use another two-step login method</a>
 | 
			
		||||
    </li>
 | 
			
		||||
    <li>
 | 
			
		||||
        <a ui-sref="frontend.login.info({returnState: returnState})">Back to log in</a>
 | 
			
		||||
    </li>
 | 
			
		||||
</ul>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,32 +0,0 @@
 | 
			
		|||
<div class="login-box">
 | 
			
		||||
    <div class="login-logo">
 | 
			
		||||
        <i class="fa fa-shield"></i> <b>bit</b>warden
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="login-box-body">
 | 
			
		||||
        <div ng-show="loading">
 | 
			
		||||
            Loading...
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="accepting">
 | 
			
		||||
            Accepting invitation...
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!loading && !accepting">
 | 
			
		||||
            <p class="login-box-msg">Join {{state.params.organizationName}}</p>
 | 
			
		||||
            <p class="text-center"><strong>{{state.params.email}}</strong></p>
 | 
			
		||||
            <p>
 | 
			
		||||
                You've been invited to join the organization listed above.
 | 
			
		||||
                To accept the invitation, you need to log in or create a new Bitwarden account.
 | 
			
		||||
            </p>
 | 
			
		||||
            <hr />
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <a ui-sref="frontend.login.info({returnState: state, email: state.params.email})"
 | 
			
		||||
                       class="btn btn-primary btn-block btn-flat">Log In</a>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <a ui-sref="frontend.register({returnState: state, email: state.params.email})"
 | 
			
		||||
                       class="btn btn-primary btn-block btn-flat">Create Account</a>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,39 +0,0 @@
 | 
			
		|||
<div class="login-box">
 | 
			
		||||
    <div class="login-logo">
 | 
			
		||||
        <i class="fa fa-shield"></i> <b>bit</b>warden
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="login-box-body">
 | 
			
		||||
        <p class="login-box-msg">Get your master password hint.</p>
 | 
			
		||||
        <div class="text-center" ng-show="success">
 | 
			
		||||
            <div class="callout callout-success">
 | 
			
		||||
                If your account exists ({{model.email}}) we've sent you an email with your master password hint.
 | 
			
		||||
            </div>
 | 
			
		||||
            <a ui-sref="frontend.login.info">Ready to log in?</a>
 | 
			
		||||
        </div>
 | 
			
		||||
        <form name="passwordHintForm" ng-submit="passwordHintForm.$valid && submit(model)" ng-show="!success"
 | 
			
		||||
              api-form="submitPromise">
 | 
			
		||||
            <div class="callout callout-danger validation-errors" ng-show="passwordHintForm.$errors">
 | 
			
		||||
                <h4>Errors have occurred</h4>
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li ng-repeat="e in passwordHintForm.$errors">{{e}}</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label for="email" class="sr-only">Your account email address</label>
 | 
			
		||||
                <input type="email" id="email" name="Email" class="form-control" placeholder="Your account email address"
 | 
			
		||||
                       ng-model="model.email" required api-field />
 | 
			
		||||
                <span class="fa fa-envelope form-control-feedback"></span>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-xs-7">
 | 
			
		||||
                    <a ui-sref="frontend.login.info">Ready to log in?</a>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-xs-5">
 | 
			
		||||
                    <button type="submit" class="btn btn-primary btn-block btn-flat" ng-disabled="passwordHintForm.$loading">
 | 
			
		||||
                        <i class="fa fa-refresh fa-spin loading-icon" ng-show="passwordHintForm.$loading"></i>Submit
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,56 +0,0 @@
 | 
			
		|||
<div class="login-box">
 | 
			
		||||
    <div class="login-logo">
 | 
			
		||||
        <i class="fa fa-shield"></i> <b>bit</b>warden
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="login-box-body">
 | 
			
		||||
        <p class="login-box-msg">
 | 
			
		||||
            In the event that you cannot access your account through your normal two-step login methods, you can use your
 | 
			
		||||
            two-step login recovery code to disable all two-step providers on your account.
 | 
			
		||||
            <a href="https://help.bitwarden.com/article/lost-two-step-device/" target="_blank">Learn more</a>
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="text-center" ng-show="success">
 | 
			
		||||
            <div class="callout callout-success">
 | 
			
		||||
                Two-step login has been successfully disabled on your account.
 | 
			
		||||
            </div>
 | 
			
		||||
            <a ui-sref="frontend.login.info">Ready to log in?</a>
 | 
			
		||||
        </div>
 | 
			
		||||
        <form name="recoverForm" ng-submit="recoverForm.$valid && submit(model)" ng-show="!success"
 | 
			
		||||
              api-form="submitPromise">
 | 
			
		||||
            <div class="callout callout-danger validation-errors" ng-show="recoverForm.$errors">
 | 
			
		||||
                <h4>Errors have occurred</h4>
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li ng-repeat="e in recoverForm.$errors">{{e}}</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label for="email" class="sr-only">Email</label>
 | 
			
		||||
                <input type="email" id="email" name="Email" class="form-control" placeholder="Email" ng-model="model.email"
 | 
			
		||||
                       required api-field />
 | 
			
		||||
                <span class="fa fa-envelope form-control-feedback"></span>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label for="masterPassword" class="sr-only">Master Password</label>
 | 
			
		||||
                <input type="password" id="masterPassword" name="MasterPasswordHash" class="form-control" placeholder="Master Password"
 | 
			
		||||
                       ng-model="model.masterPassword"
 | 
			
		||||
                       required api-field />
 | 
			
		||||
                <span class="fa fa-lock form-control-feedback"></span>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label for="code" class="sr-only">Recovery code</label>
 | 
			
		||||
                <input type="text" id="code" name="RecoveryCode" class="form-control" placeholder="Recovery code"
 | 
			
		||||
                       ng-model="model.code" required api-field />
 | 
			
		||||
                <span class="fa fa-key form-control-feedback"></span>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-xs-7">
 | 
			
		||||
                    <a ui-sref="frontend.login.info">Ready to log in?</a>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-xs-5">
 | 
			
		||||
                    <button type="submit" class="btn btn-primary btn-block btn-flat" ng-disabled="recoverForm.$loading">
 | 
			
		||||
                        <i class="fa fa-refresh fa-spin loading-icon" ng-show="recoverForm.$loading"></i>Submit
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,39 +0,0 @@
 | 
			
		|||
<div class="login-box">
 | 
			
		||||
    <div class="login-logo">
 | 
			
		||||
        <i class="fa fa-shield"></i> <b>bit</b>warden
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="login-box-body">
 | 
			
		||||
        <p class="login-box-msg">Enter your email address below to recover & delete your Bitwarden account.</p>
 | 
			
		||||
        <div ng-show="success" class="text-center">
 | 
			
		||||
            <div class="callout callout-success">
 | 
			
		||||
                If your account exists ({{model.email}}) we've sent you an email with further instructions.
 | 
			
		||||
            </div>
 | 
			
		||||
            <a ui-sref="frontend.login.info">Return to log in</a>
 | 
			
		||||
        </div>
 | 
			
		||||
        <form name="form" ng-submit="form.$valid && submit(model)" ng-show="!success"
 | 
			
		||||
              api-form="submitPromise">
 | 
			
		||||
            <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
                <h4>Errors have occurred</h4>
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label for="email" class="sr-only">Your account email address</label>
 | 
			
		||||
                <input type="email" id="email" name="Email" class="form-control" placeholder="Your account email address"
 | 
			
		||||
                       ng-model="model.email" required api-field />
 | 
			
		||||
                <span class="fa fa-envelope form-control-feedback"></span>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-xs-7">
 | 
			
		||||
                    <a ui-sref="frontend.login.info">Return to log in</a>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-xs-5">
 | 
			
		||||
                    <button type="submit" class="btn btn-primary btn-block btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
                        <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,82 +0,0 @@
 | 
			
		|||
<div class="register-box">
 | 
			
		||||
    <div class="register-logo">
 | 
			
		||||
        <i class="fa fa-shield"></i> <b>bit</b>warden
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="register-box-body">
 | 
			
		||||
        <p class="login-box-msg">Create a new account.</p>
 | 
			
		||||
        <div class="text-center" ng-show="success">
 | 
			
		||||
            <div class="callout callout-success">
 | 
			
		||||
                <h4>Account Created!</h4>
 | 
			
		||||
                <p>You may now log in to your new account.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <a ui-sref="frontend.login.info({returnState: returnState, email: model.email})">Ready to log in?</a>
 | 
			
		||||
        </div>
 | 
			
		||||
        <form name="registerForm" ng-submit="registerForm.$valid && register(registerForm)" ng-show="!success"
 | 
			
		||||
              api-form="registerPromise">
 | 
			
		||||
            <div class="callout callout-default" ng-show="createOrg">
 | 
			
		||||
                <h4>Create Organization, Step 1</h4>
 | 
			
		||||
                <p>Before creating your organization, you first need to create a free personal account.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="callout callout-danger validation-errors" ng-show="registerForm.$errors">
 | 
			
		||||
                <h4>Errors have occurred</h4>
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li ng-repeat="e in registerForm.$errors">{{e}}</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label for="email" class="sr-only">Email</label>
 | 
			
		||||
                <input type="email" id="email" name="Email" class="form-control" placeholder="Email" ng-model="model.email"
 | 
			
		||||
                       ng-readonly="readOnlyEmail" required api-field />
 | 
			
		||||
                <span class="fa fa-envelope form-control-feedback"></span>
 | 
			
		||||
                <p class="help-block">You'll use your email address to log in.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label for="name" class="sr-only">Your Name</label>
 | 
			
		||||
                <input type="text" id="name" name="Name" class="form-control" ng-model="model.name"
 | 
			
		||||
                       placeholder="Your Name" api-field>
 | 
			
		||||
                <span class="fa fa-user form-control-feedback"></span>
 | 
			
		||||
                <p class="help-block">What should we call you?</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label for="masterPassword" class="sr-only">Master Password</label>
 | 
			
		||||
                <input type="password" id="masterPassword" name="MasterPasswordHash" class="form-control"
 | 
			
		||||
                       ng-model="model.masterPassword" placeholder="Master Password" required api-field>
 | 
			
		||||
                <span class="fa fa-lock form-control-feedback"></span>
 | 
			
		||||
                <p class="help-block">The master password is the password you use to access your vault.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label form="confirmMasterPassword" class="sr-only">Re-type Master Password</label>
 | 
			
		||||
                <input type="password" id="confirmMasterPassword" name="ConfirmMasterPassword" class="form-control"
 | 
			
		||||
                       placeholder="Re-type Master Password"
 | 
			
		||||
                       ng-model="model.confirmMasterPassword" required api-field>
 | 
			
		||||
                <span class="fa fa-lock form-control-feedback"></span>
 | 
			
		||||
                <p class="help-block">
 | 
			
		||||
                    It is very important that you do not forget your master password.
 | 
			
		||||
                    There is <u>no way</u> to recover the password in the event that you forget it.
 | 
			
		||||
                </p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group has-feedback" show-errors>
 | 
			
		||||
                <label for="hint" class="sr-only">Master Password Hint (optional)</label>
 | 
			
		||||
                <input type="text" id="hint" name="MasterPasswordHint" class="form-control" ng-model="model.masterPasswordHint"
 | 
			
		||||
                       placeholder="Master Password Hint (optional)" api-field>
 | 
			
		||||
                <span class="fa fa-lightbulb-o form-control-feedback"></span>
 | 
			
		||||
                <p class="help-block">A master password hint can help you remember your password if you forget it.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-xs-7">
 | 
			
		||||
                    <a ui-sref="frontend.login.info({returnState: returnState})">Already have an account?</a>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-xs-5">
 | 
			
		||||
                    <button type="submit" class="btn btn-primary btn-block btn-flat" ng-disabled="registerForm.$loading">
 | 
			
		||||
                        <i class="fa fa-refresh fa-spin loading-icon" ng-show="registerForm.$loading"></i>Submit
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <hr />
 | 
			
		||||
            By clicking the above "Submit" button, you are agreeing to the
 | 
			
		||||
            <a href="https://bitwarden.com/terms/" target="_blank">Terms of Service</a>
 | 
			
		||||
            and the
 | 
			
		||||
            <a href="https://bitwarden.com/privacy/" target="_blank">Privacy Policy</a>.
 | 
			
		||||
        </form>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,25 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-key"></i> Two-step Providers</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-body">
 | 
			
		||||
    <div class="list-group" ng-repeat="provider in providers | orderBy: 'displayOrder'">
 | 
			
		||||
        <a href="#" stop-click class="list-group-item" ng-click="choose(provider)">
 | 
			
		||||
            <img alt="{{::provider.name}}" ng-src="{{'images/two-factor/' + provider.image}}" class="pull-right hidden-xs" />
 | 
			
		||||
            <h4 class="list-group-item-heading">{{::provider.name}}</h4>
 | 
			
		||||
            <p class="list-group-item-text">{{::provider.description}}</p>
 | 
			
		||||
        </a>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="list-group" style="margin-bottom: 0;">
 | 
			
		||||
        <a href="https://help.bitwarden.com/article/lost-two-step-device/" target="_blank" class="list-group-item">
 | 
			
		||||
            <h4 class="list-group-item-heading">Recovery Code</h4>
 | 
			
		||||
            <p class="list-group-item-text">
 | 
			
		||||
                Lost access to all of your two-factor providers? Use your recovery code to disable
 | 
			
		||||
                all two-factor providers from your account.
 | 
			
		||||
            </p>
 | 
			
		||||
        </a>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-footer">
 | 
			
		||||
    <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,8 +0,0 @@
 | 
			
		|||
<div class="login-box">
 | 
			
		||||
    <div class="login-logo">
 | 
			
		||||
        <i class="fa fa-shield"></i> <b>bit</b>warden
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="login-box-body">
 | 
			
		||||
        Verifying email...
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,21 +0,0 @@
 | 
			
		|||
<div class="login-box">
 | 
			
		||||
    <div class="login-logo">
 | 
			
		||||
        <i class="fa fa-shield"></i> <b>bit</b>warden
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="login-box-body">
 | 
			
		||||
        <div ng-if="deleting">
 | 
			
		||||
            Deleting account...
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!deleting">
 | 
			
		||||
            <div class="callout callout-warning">
 | 
			
		||||
                <h4><i class="fa fa-warning fa-fw"></i> Warning</h4>
 | 
			
		||||
                This will permanently delete your account. This cannot be undone.
 | 
			
		||||
            </div>
 | 
			
		||||
            <p>
 | 
			
		||||
                You have requested to delete your Bitwarden account (<b>{{email}}</b>).
 | 
			
		||||
                Click the button below to confirm and proceed.
 | 
			
		||||
            </p>
 | 
			
		||||
            <button ng-click="delete()" class="btn btn-danger btn-block btn-flat">Delete Account</button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,230 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Billing
 | 
			
		||||
        <small>manage your billing & licensing</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="callout callout-warning" ng-if="subscription && subscription.cancelled">
 | 
			
		||||
        <h4><i class="fa fa-warning"></i> Canceled</h4>
 | 
			
		||||
        The subscription to this organization has been canceled.
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="callout callout-warning" ng-if="subscription && subscription.markedForCancel">
 | 
			
		||||
        <h4><i class="fa fa-warning"></i> Pending Cancellation</h4>
 | 
			
		||||
        <p>
 | 
			
		||||
            The subscription to this organization has been marked for cancellation at the end of the
 | 
			
		||||
            current billing period.
 | 
			
		||||
        </p>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="reinstate()">
 | 
			
		||||
            Reinstate Plan
 | 
			
		||||
        </button>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Plan</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <dl ng-if="selfHosted">
 | 
			
		||||
                        <dt>Name</dt>
 | 
			
		||||
                        <dd>{{plan.name || '-'}}</dd>
 | 
			
		||||
                        <dt>Expiration</dt>
 | 
			
		||||
                        <dd ng-if="loading">
 | 
			
		||||
                            Loading...
 | 
			
		||||
                        </dd>
 | 
			
		||||
                        <dd ng-if="!loading && expiration">
 | 
			
		||||
                            {{expiration | date: 'medium'}}
 | 
			
		||||
                        </dd>
 | 
			
		||||
                        <dd ng-if="!loading && !expiration">
 | 
			
		||||
                            Never expires
 | 
			
		||||
                        </dd>
 | 
			
		||||
                    </dl>
 | 
			
		||||
                    <dl ng-if="!selfHosted">
 | 
			
		||||
                        <dt>Name</dt>
 | 
			
		||||
                        <dd>{{plan.name || '-'}}</dd>
 | 
			
		||||
                        <dt>Total Seats</dt>
 | 
			
		||||
                        <dd>{{plan.seats || '-'}}</dd>
 | 
			
		||||
                    </dl>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6" ng-if="!selfHosted">
 | 
			
		||||
                    <dl>
 | 
			
		||||
                        <dt>Status</dt>
 | 
			
		||||
                        <dd>
 | 
			
		||||
                            <span style="text-transform: capitalize;">{{(subscription && subscription.status) || '-'}}</span>
 | 
			
		||||
                            <span ng-if="subscription.markedForCancel">- marked for cancellation</span>
 | 
			
		||||
                        </dd>
 | 
			
		||||
                        <dt>Next Charge</dt>
 | 
			
		||||
                        <dd>{{nextInvoice ? ((nextInvoice.date | date: 'mediumDate') + ', ' + (nextInvoice.amount | currency:'$')) : '-'}}</dd>
 | 
			
		||||
                    </dl>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row" ng-if="!selfHosted && !noSubscription">
 | 
			
		||||
                <div class="col-md-6">
 | 
			
		||||
                    <strong>Details</strong>
 | 
			
		||||
                    <div ng-show="loading">
 | 
			
		||||
                        Loading...
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="table-responsive" style="margin: 0;" ng-show="!loading">
 | 
			
		||||
                        <table class="table" style="margin: 0;">
 | 
			
		||||
                            <tbody>
 | 
			
		||||
                                <tr ng-repeat="item in subscription.items">
 | 
			
		||||
                                    <td>
 | 
			
		||||
                                        {{item.name}} {{item.qty > 1 ? '×' + item.qty : ''}}
 | 
			
		||||
                                        @ {{item.amount | currency:'$'}} /{{item.interval}}
 | 
			
		||||
                                    </td>
 | 
			
		||||
                                    <td class="text-right">{{(item.qty * item.amount) | currency:'$'}} /{{item.interval}}</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                            </tbody>
 | 
			
		||||
                        </table>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer" ng-if="!selfHosted">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="changePlan()">
 | 
			
		||||
                Change Plan
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="cancel()"
 | 
			
		||||
                    ng-if="!noSubscription && !subscription.cancelled && !subscription.markedForCancel">
 | 
			
		||||
                Cancel Plan
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="reinstate()"
 | 
			
		||||
                    ng-if="!noSubscription && subscription.markedForCancel">
 | 
			
		||||
                Reinstate Plan
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="license()"
 | 
			
		||||
                    ng-if="!subscription.cancelled">
 | 
			
		||||
                Download License
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer" ng-if="selfHosted">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="updateLicense()">
 | 
			
		||||
                Update License
 | 
			
		||||
            </button>
 | 
			
		||||
            <a href="https://vault.bitwarden.com" class="btn btn-default btn-flat" target="_blank">
 | 
			
		||||
                Manage Billing
 | 
			
		||||
            </a>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">User Seats</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <div ng-show="loading">
 | 
			
		||||
                Loading...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading">
 | 
			
		||||
                Your plan currently has a total of <b>{{plan.seats}}</b> seats.
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer" ng-if="!selfHosted && !noSubscription && canAdjustSeats">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="adjustSeats(true)">
 | 
			
		||||
                Add Seats
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="adjustSeats(false)">
 | 
			
		||||
                Remove Seats
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default" ng-if="storage && !selfHosted">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Storage</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <p>
 | 
			
		||||
                Your plan has a total of {{storage.maxGb}} GB of encrypted file storage.
 | 
			
		||||
                You are currently using {{storage.currentName}}.
 | 
			
		||||
            </p>
 | 
			
		||||
            <div class="progress" style="margin: 0;">
 | 
			
		||||
                <div class="progress-bar progress-bar-info" role="progressbar"
 | 
			
		||||
                     aria-valuenow="{{storage.percentage}}" aria-valuemin="0" aria-valuemax="1"
 | 
			
		||||
                     style="min-width: 50px; width: {{storage.percentage}}%;">
 | 
			
		||||
                    {{storage.percentage}}%
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="adjustStorage(true)">
 | 
			
		||||
                Add Storage
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="adjustStorage(false)">
 | 
			
		||||
                Remove Storage
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default" ng-if="!selfHosted">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Payment Method</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <div ng-show="loading">
 | 
			
		||||
                Loading...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !paymentSource">
 | 
			
		||||
                <i class="fa fa-credit-card"></i> No payment method on file.
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && paymentSource">
 | 
			
		||||
                <div class="callout callout-warning" ng-if="paymentSource.type === 1 && paymentSource.needsVerification">
 | 
			
		||||
                    <h4><i class="fa fa-warning"></i> You must verify your bank account</h4>
 | 
			
		||||
                    <p>
 | 
			
		||||
                        We have made two micro-deposits to your bank account (it may take 1-2 business days to show up).
 | 
			
		||||
                        Enter these amounts to verify the bank account. Failure to verify the bank account will result in a
 | 
			
		||||
                        missed payment and your organization being disabled.
 | 
			
		||||
                    </p>
 | 
			
		||||
                    <button class="btn btn-default btn-flat" ng-click="verifyBank()">Verify Now</button>
 | 
			
		||||
                </div>
 | 
			
		||||
                <i class="fa" ng-class="{'fa-credit-card': paymentSource.type === 0,
 | 
			
		||||
                   'fa-university': paymentSource.type === 1, 'fa-paypal fa-fw text-blue': paymentSource.type === 2}"></i>
 | 
			
		||||
                {{paymentSource.description}}
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="changePayment()">
 | 
			
		||||
                {{ paymentSource ? 'Change Payment Method' : 'Add Payment Method' }}
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default" ng-if="!selfHosted">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Charges</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <div ng-show="loading">
 | 
			
		||||
                Loading...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !charges.length">
 | 
			
		||||
                No charges.
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="charges.length">
 | 
			
		||||
                <table class="table">
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="charge in charges">
 | 
			
		||||
                            <td style="width: 30px">
 | 
			
		||||
                                <a href="#" stop-click ng-click="viewInvoice(charge)" title="Invoice">
 | 
			
		||||
                                    <i class="fa fa-file-pdf-o"></i>
 | 
			
		||||
                                </a>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 200px">
 | 
			
		||||
                                {{charge.date | date: 'mediumDate'}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="min-width: 150px">
 | 
			
		||||
                                {{charge.paymentSource}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 150px; text-transform: capitalize;">
 | 
			
		||||
                                {{charge.status}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td class="text-right" style="width: 150px;">
 | 
			
		||||
                                {{charge.amount | currency:'$'}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            Note: Any charges will appear on your statement as <b>BITWARDEN</b>.
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,46 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-users"></i>
 | 
			
		||||
        {{add ? 'Add Seats' : 'Remove Seats'}}
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-default" ng-show="add">
 | 
			
		||||
            <h4><i class="fa fa-dollar"></i> Note About Charges</h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                Adding seats to your plan will result in adjustments to your billing totals and immediately charge your
 | 
			
		||||
                payment method on file. The first charge will be prorated for the remainder of the current billing cycle.
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-default" ng-show="!add">
 | 
			
		||||
            <h4><i class="fa fa-dollar"></i> Note About Charges</h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                Removing seats will result in adjustments to your billing totals that will be prorated as credits
 | 
			
		||||
                to your next billing charge.
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-md-6">
 | 
			
		||||
                <div class="form-group">
 | 
			
		||||
                    <label for="seats">{{add ? 'Seats To Add' : 'Seats To Remove'}}</label>
 | 
			
		||||
                    <input type="number" id="seats" name="SeatAdjustment" ng-model="seatAdjustment" class="form-control"
 | 
			
		||||
                           required min="0" />
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,14 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-file-text-o"></i> Change Plan</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        You can <a href="https://bitwarden.com/contact/" target="_blank">contact us</a>
 | 
			
		||||
        if you would like to change your plan. Please ensure that you have an active payment
 | 
			
		||||
        method on file.
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,43 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-check-square-o"></i>
 | 
			
		||||
        Verify Bank Account
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>
 | 
			
		||||
            Enter the two micro-deposit amounts from your bank account. Both amounts will be less than $1.00 each.
 | 
			
		||||
            For example, if we deposited $0.32 and $0.45 you would enter the values "32" and "45".
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group">
 | 
			
		||||
            <label for="amount1">Amount 1</label>
 | 
			
		||||
            <div class="input-group">
 | 
			
		||||
                <span class="input-group-addon">$ 0.</span>
 | 
			
		||||
                <input type="number" id="amount1" name="Amount1" ng-model="amount1" class="form-control"
 | 
			
		||||
                       required min="1" max="99" placeholder="xx" />
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group">
 | 
			
		||||
            <label for="amount2">Amount 2</label>
 | 
			
		||||
            <div class="input-group">
 | 
			
		||||
                <span class="input-group-addon">$ 0.</span>
 | 
			
		||||
                <input type="number" id="amount2" name="Amount2" ng-model="amount2" class="form-control"
 | 
			
		||||
                       required min="1" max="99" placeholder="xx" />
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,70 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Collections
 | 
			
		||||
        <small>control what you share</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="box">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
             
 | 
			
		||||
            <div class="box-filters hidden-xs">
 | 
			
		||||
                <div class="form-group form-group-sm has-feedback has-feedback-left">
 | 
			
		||||
                    <input type="text" id="filterSearch" class="form-control" placeholder="Search collections..."
 | 
			
		||||
                           style="width: 200px;" ng-model="filterSearch">
 | 
			
		||||
                    <span class="fa fa-search form-control-feedback text-muted" aria-hidden="true"></span>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-tools">
 | 
			
		||||
                <button type="button" class="btn btn-primary btn-sm btn-flat" ng-click="add()">
 | 
			
		||||
                    <i class="fa fa-fw fa-plus-circle"></i> New Collection
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body" ng-class="{'no-padding': filteredCollections.length}">
 | 
			
		||||
            <div ng-show="loading && !collections.length">
 | 
			
		||||
                Loading...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!filteredCollections.length && filterSearch">
 | 
			
		||||
                No collections to list.
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !collections.length">
 | 
			
		||||
                <p>There are no collections yet for your organization.</p>
 | 
			
		||||
                <button type="button" ng-click="add()" class="btn btn-default btn-flat">Add a Collection</button>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="collections.length">
 | 
			
		||||
                <table class="table table-striped table-hover table-vmiddle">
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="collection in filteredCollections = (collections | filter: (filterSearch || '') |
 | 
			
		||||
                            orderBy: ['name']) track by collection.id">
 | 
			
		||||
                            <td style="width: 70px;">
 | 
			
		||||
                                <div class="btn-group" data-append-to="body">
 | 
			
		||||
                                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                        <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                                    </button>
 | 
			
		||||
                                    <ul class="dropdown-menu">
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="users(collection)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-users"></i> Users
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="delete(collection)" class="text-red">
 | 
			
		||||
                                                <i class="fa fa-fw fa-trash"></i> Delete
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                    </ul>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                <a href="#" stop-click ng-click="edit(collection)">
 | 
			
		||||
                                    {{collection.name}}
 | 
			
		||||
                                </a>
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,83 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-cubes"></i> Add New Collection</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit(model)" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-default">
 | 
			
		||||
            <h4><i class="fa fa-info-circle"></i> Note</h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                After creating the collection, you can associate a user to it by selecting a specific user on the "People" page.
 | 
			
		||||
            </p>
 | 
			
		||||
            <p>
 | 
			
		||||
                You can associate new logins to the collection from your organization's "Vault" or by sharing an existing
 | 
			
		||||
                login from "My vault".
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="email">Name</label>
 | 
			
		||||
            <input type="text" id="name" name="Name" ng-model="model.name" class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="useGroups">
 | 
			
		||||
            <h4>Group Access</h4>
 | 
			
		||||
            <div ng-show="loading && !groups.length">
 | 
			
		||||
                Loading groups...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !groups.length">
 | 
			
		||||
                <p>No groups for your organization.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="groups.length" style="margin: 0;">
 | 
			
		||||
                <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th style="width: 40px;">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       ng-checked="allSelected()"
 | 
			
		||||
                                       ng-click="toggleGroupSelectionAll($event)">
 | 
			
		||||
                            </th>
 | 
			
		||||
                            <th>Name</th>
 | 
			
		||||
                            <th style="width: 100px; text-align: center;">Read Only</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="group in groups | orderBy: ['name']">
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedGroups[]"
 | 
			
		||||
                                       value="{{group.id}}"
 | 
			
		||||
                                       ng-checked="groupSelected(group)"
 | 
			
		||||
                                       ng-click="toggleGroupSelection(group.id)"
 | 
			
		||||
                                       ng-disabled="group.accessAll">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                {{group.name}}
 | 
			
		||||
                                <i class="fa fa-unlock text-muted fa-fw" ng-show="group.accessAll"
 | 
			
		||||
                                   title="This group can access all items"></i>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 100px; text-align: center;" valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedGroupsReadonly[]"
 | 
			
		||||
                                       value="{{group.id}}"
 | 
			
		||||
                                       ng-disabled="!groupSelected(group) || group.accessAll"
 | 
			
		||||
                                       ng-checked="groupSelected(group) && selectedGroups[group.id].readOnly"
 | 
			
		||||
                                       ng-click="toggleGroupReadOnlySelection(group)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,84 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-cubes"></i> Edit Collection</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit(collection)" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-default">
 | 
			
		||||
            <h4><i class="fa fa-info-circle"></i> Note</h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                Select "Users" from the listing options to manage existing users for this collection. Associate new users by
 | 
			
		||||
                editing the user's access on the "People" page.
 | 
			
		||||
            </p>
 | 
			
		||||
            <p>
 | 
			
		||||
                You can associate new logins to the collection from your organization's "Vault" or by sharing an existing
 | 
			
		||||
                login from "My vault".
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="email">Name</label>
 | 
			
		||||
            <input type="text" id="name" name="Name" ng-model="collection.name" class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="useGroups">
 | 
			
		||||
            <h4>Group Access</h4>
 | 
			
		||||
            <div ng-show="loading && !groups.length">
 | 
			
		||||
                Loading groups...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !groups.length">
 | 
			
		||||
                <p>No groups for your organization.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="groups.length" style="margin: 0;">
 | 
			
		||||
                <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th style="width: 40px;">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       ng-checked="allSelected()"
 | 
			
		||||
                                       ng-click="toggleGroupSelectionAll($event)">
 | 
			
		||||
                            </th>
 | 
			
		||||
                            <th>Name</th>
 | 
			
		||||
                            <th style="width: 100px; text-align: center;">Read Only</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="group in groups | orderBy: ['name']">
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedGroups[]"
 | 
			
		||||
                                       value="{{group.id}}"
 | 
			
		||||
                                       ng-checked="groupSelected(group)"
 | 
			
		||||
                                       ng-click="toggleGroupSelection(group.id)"
 | 
			
		||||
                                       ng-disabled="group.accessAll">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                {{group.name}}
 | 
			
		||||
                                <i class="fa fa-unlock text-muted fa-fw" ng-show="group.accessAll"
 | 
			
		||||
                                   title="This group can access all items"></i>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 100px; text-align: center;" valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedGroupsReadonly[]"
 | 
			
		||||
                                       value="{{group.id}}"
 | 
			
		||||
                                       ng-disabled="!groupSelected(group) || group.accessAll"
 | 
			
		||||
                                       ng-checked="groupSelected(group) && selectedGroups[group.id].readOnly"
 | 
			
		||||
                                       ng-click="toggleGroupReadOnlySelection(group)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,64 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-users"></i> User Access <small>{{collection.name}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-body">
 | 
			
		||||
    <div ng-show="loading && !users.length">
 | 
			
		||||
        Loading...
 | 
			
		||||
    </div>
 | 
			
		||||
    <div ng-show="!loading && !users.length">
 | 
			
		||||
        <p>
 | 
			
		||||
            No users for this collection. You can associate a new user to this collection by
 | 
			
		||||
            selecting a specific user on the "People" page.
 | 
			
		||||
        </p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="table-responsive" ng-show="users.length" style="margin: 0;">
 | 
			
		||||
        <table class="table table-striped table-hover table-vmiddle" style="margin: 0;">
 | 
			
		||||
            <tbody>
 | 
			
		||||
                <tr ng-repeat="user in users | orderBy: ['email']">
 | 
			
		||||
                    <td style="width: 70px;">
 | 
			
		||||
                        <div class="btn-group" data-append-to=".modal">
 | 
			
		||||
                            <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                            </button>
 | 
			
		||||
                            <ul class="dropdown-menu">
 | 
			
		||||
                                <li ng-show="!user.accessAll">
 | 
			
		||||
                                    <a href="#" stop-click ng-click="remove(user)" class="text-red">
 | 
			
		||||
                                        <i class="fa fa-fw fa-remove"></i> Remove
 | 
			
		||||
                                    </a>
 | 
			
		||||
                                </li>
 | 
			
		||||
                                <li ng-show="user.accessAll">
 | 
			
		||||
                                    <a href="#" stop-click>
 | 
			
		||||
                                        No options...
 | 
			
		||||
                                    </a>
 | 
			
		||||
                                </li>
 | 
			
		||||
                            </ul>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 45px;">
 | 
			
		||||
                        <letter-avatar data="{{user.name || user.email}}"></letter-avatar>
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td>
 | 
			
		||||
                        {{user.email}}
 | 
			
		||||
                        <div ng-if="user.name"><small class="text-muted">{{user.name}}</small></div>
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 60px;" class="text-right">
 | 
			
		||||
                        <i class="fa fa-unlock" ng-show="user.accessAll" title="Can Access All Items"></i>
 | 
			
		||||
                        <i class="fa fa-pencil-square-o" ng-show="!user.readOnly" title="Can Edit"></i>
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 100px;">
 | 
			
		||||
                        {{user.type | enumName: 'OrgUserType'}}
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 120px;">
 | 
			
		||||
                        <span class="label {{user.status | enumLabelClass: 'OrgUserStatus'}}">
 | 
			
		||||
                            {{user.status | enumName: 'OrgUserStatus'}}
 | 
			
		||||
                        </span>
 | 
			
		||||
                    </td>
 | 
			
		||||
                </tr>
 | 
			
		||||
            </tbody>
 | 
			
		||||
        </table>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-footer">
 | 
			
		||||
    <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,34 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Dashboard
 | 
			
		||||
        <small>{{orgProfile.name}}</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="callout callout-warning" ng-if="!orgProfile.enabled">
 | 
			
		||||
        <h4><i class="fa fa-warning"></i> Organization Disabled</h4>
 | 
			
		||||
        <p>This organization is currently disabled. Users will not see your shared logins or collections.</p>
 | 
			
		||||
        <p ng-if="!selfHosted">Contact us if you would like to reinstate this organization.</p>
 | 
			
		||||
        <p ng-if="selfHosted">Update your license to reinstate this organization.</p>
 | 
			
		||||
        <a ng-if="selfHosted" class="btn btn-default btn-flat" href="#" stop-click ng-click="goBilling()">
 | 
			
		||||
            Billing & Licensing
 | 
			
		||||
        </a>
 | 
			
		||||
        <a class="btn btn-default btn-flat" href="https://bitwarden.com/contact/" target="_blank">
 | 
			
		||||
            Contact Us
 | 
			
		||||
        </a>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Let's Get Started!</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <p>Get started by inviting users and creating your collections.</p>
 | 
			
		||||
            <a class="btn btn-default btn-flat" ui-sref="backend.org.people({orgId: orgProfile.id})">
 | 
			
		||||
                Invite Users
 | 
			
		||||
            </a>
 | 
			
		||||
            <a class="btn btn-default btn-flat" ui-sref="backend.org.collections({orgId: orgProfile.id})">
 | 
			
		||||
                Manage Collections
 | 
			
		||||
            </a>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,34 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-trash"></i> Delete Organization</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>
 | 
			
		||||
            Continue below to delete this organization and all associated data. This data includes any collections and
 | 
			
		||||
            their associated logins. Individual user accounts will remain, though they will not be associated to this
 | 
			
		||||
            organization anymore.
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning</h4>
 | 
			
		||||
            Deleting this organization is permanent. It cannot be undone.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="masterPassword" class="form-control"
 | 
			
		||||
                   required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Delete
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,67 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Events
 | 
			
		||||
        <small>audit your organization</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="box">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
             
 | 
			
		||||
            <div class="box-filters hidden-xs hidden-sm">
 | 
			
		||||
                <input type="datetime-local" ng-model="filterStart" required
 | 
			
		||||
                       class="form-control input-sm" style="width:initial;" />
 | 
			
		||||
                -
 | 
			
		||||
                <input type="datetime-local" ng-model="filterEnd" required
 | 
			
		||||
                       class="form-control input-sm" style="width:initial;" />
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-tools">
 | 
			
		||||
                <button type="button" class="btn btn-primary btn-sm btn-flat" ng-click="refresh()">
 | 
			
		||||
                    <i class="fa fa-fw fa-refresh" ng-class="{'fa-spin': loading}"></i> Refresh
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body" ng-class="{'no-padding': filteredEvents.length}">
 | 
			
		||||
            <div ng-show="loading && !events.length">
 | 
			
		||||
                Loading...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !events.length">
 | 
			
		||||
                <p>There are no events to list.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="events.length">
 | 
			
		||||
                <table class="table table-striped table-hover">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th>Timestamp</th>
 | 
			
		||||
                            <th><span class="sr-only">App</span></th>
 | 
			
		||||
                            <th>User</th>
 | 
			
		||||
                            <th>Event</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="event in filteredEvents = (events)">
 | 
			
		||||
                            <td style="width: 210px; min-width: 100px;">
 | 
			
		||||
                                {{event.date | date:'medium'}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 20px;" class="text-center">
 | 
			
		||||
                                <i class="text-muted fa fa-lg {{event.appIcon}}" title="{{event.appName}}, {{event.ip}}"></i>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 150px; min-width: 100px;">
 | 
			
		||||
                                {{event.userName}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td>
 | 
			
		||||
                                <div ng-bind-html="event.message"></div>
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer text-center" ng-show="continuationToken">
 | 
			
		||||
            <button class="btn btn-link btn-block" ng-click="next()" ng-if="!loading">
 | 
			
		||||
                Load more...
 | 
			
		||||
            </button>
 | 
			
		||||
            <i class="fa fa-fw fa-refresh fa-spin text-muted" ng-if="loading"></i>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,70 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Groups
 | 
			
		||||
        <small>organize your users</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="box">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
             
 | 
			
		||||
            <div class="box-filters hidden-xs">
 | 
			
		||||
                <div class="form-group form-group-sm has-feedback has-feedback-left">
 | 
			
		||||
                    <input type="text" id="filterSearch" class="form-control" placeholder="Search groups..."
 | 
			
		||||
                           style="width: 200px;" ng-model="filterSearch">
 | 
			
		||||
                    <span class="fa fa-search form-control-feedback text-muted" aria-hidden="true"></span>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-tools">
 | 
			
		||||
                <button type="button" class="btn btn-primary btn-sm btn-flat" ng-click="add()">
 | 
			
		||||
                    <i class="fa fa-fw fa-plus-circle"></i> New Group
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body" ng-class="{'no-padding': filteredGroups.length}">
 | 
			
		||||
            <div ng-show="loading && !groups.length">
 | 
			
		||||
                Loading...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!filteredGroups.length && filterSearch">
 | 
			
		||||
                No groups to list.
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !groups.length">
 | 
			
		||||
                <p>There are no groups yet for your organization.</p>
 | 
			
		||||
                <button type="button" ng-click="add()" class="btn btn-default btn-flat">Add a Group</button>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="groups.length">
 | 
			
		||||
                <table class="table table-striped table-hover table-vmiddle">
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="group in filteredGroups = (groups | filter: (filterSearch || '') |
 | 
			
		||||
                            orderBy: ['name']) track by group.id">
 | 
			
		||||
                            <td style="width: 70px;">
 | 
			
		||||
                                <div class="btn-group" data-append-to="body">
 | 
			
		||||
                                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                        <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                                    </button>
 | 
			
		||||
                                    <ul class="dropdown-menu">
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="users(group)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-users"></i> Users
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="delete(group)" class="text-red">
 | 
			
		||||
                                                <i class="fa fa-fw fa-trash"></i> Delete
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                    </ul>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                <a href="#" stop-click ng-click="edit(group)">
 | 
			
		||||
                                    {{group.name}}
 | 
			
		||||
                                </a>
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,95 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-sitemap"></i> Add New Group</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit(model)" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-default">
 | 
			
		||||
            <h4><i class="fa fa-info-circle"></i> Note</h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                After creating the group, you can associate a user to it by selecting the "Groups" option for a specific user
 | 
			
		||||
                on the "People" page.
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="name">Name</label>
 | 
			
		||||
            <input type="text" id="name" name="Name" ng-model="model.name" class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="externalId">External Id</label>
 | 
			
		||||
            <input type="text" id="externalId" name="ExternalId" ng-model="model.externalId" class="form-control" api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <h4>Access</h4>
 | 
			
		||||
        <div class="radio">
 | 
			
		||||
            <label>
 | 
			
		||||
                <input type="radio" ng-model="model.accessAll" name="AccessAll"
 | 
			
		||||
                       ng-value="true" ng-checked="model.accessAll">
 | 
			
		||||
                This group can access and modify <u>all items</u>.
 | 
			
		||||
            </label>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="radio">
 | 
			
		||||
            <label>
 | 
			
		||||
                <input type="radio" ng-model="model.accessAll" name="AccessAll"
 | 
			
		||||
                       ng-value="false" ng-checked="!model.accessAll">
 | 
			
		||||
                This group can access only the selected collections.
 | 
			
		||||
            </label>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!model.accessAll">
 | 
			
		||||
            <div ng-show="loading && !collections.length">
 | 
			
		||||
                Loading collections...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !collections.length">
 | 
			
		||||
                <p>No collections for your organization.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="collections.length" style="margin: 0;">
 | 
			
		||||
                <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th style="width: 40px;">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       ng-checked="allSelected()"
 | 
			
		||||
                                       ng-click="toggleCollectionSelectionAll($event)">
 | 
			
		||||
                            </th>
 | 
			
		||||
                            <th>Name</th>
 | 
			
		||||
                            <th style="width: 100px; text-align: center;">Read Only</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="collection in collections | orderBy: ['name']">
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedCollections[]"
 | 
			
		||||
                                       value="{{collection.id}}"
 | 
			
		||||
                                       ng-checked="collectionSelected(collection)"
 | 
			
		||||
                                       ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                {{collection.name}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 100px; text-align: center;" valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedCollectionsReadonly[]"
 | 
			
		||||
                                       value="{{collection.id}}"
 | 
			
		||||
                                       ng-disabled="!collectionSelected(collection)"
 | 
			
		||||
                                       ng-checked="collectionSelected(collection) && selectedCollections[collection.id].readOnly"
 | 
			
		||||
                                       ng-click="toggleCollectionReadOnlySelection(collection.id)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,95 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-sitemap"></i> Edit Group</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-default">
 | 
			
		||||
            <h4><i class="fa fa-info-circle"></i> Note</h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                Select "Users" from the listing options to manage existing users for this group. Associate new users by
 | 
			
		||||
                selecting "Groups" the "People" page for a specific user.
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="name">Name</label>
 | 
			
		||||
            <input type="text" id="name" name="Name" ng-model="group.name" class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="externalId">External Id</label>
 | 
			
		||||
            <input type="text" id="externalId" name="ExternalId" ng-model="group.externalId" class="form-control" api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <h4>Access</h4>
 | 
			
		||||
        <div class="radio">
 | 
			
		||||
            <label>
 | 
			
		||||
                <input type="radio" ng-model="group.accessAll" name="AccessAll"
 | 
			
		||||
                       ng-value="true" ng-checked="group.accessAll">
 | 
			
		||||
                This group can access and modify <u>all items</u>.
 | 
			
		||||
            </label>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="radio">
 | 
			
		||||
            <label>
 | 
			
		||||
                <input type="radio" ng-model="group.accessAll" name="AccessAll"
 | 
			
		||||
                       ng-value="false" ng-checked="!group.accessAll">
 | 
			
		||||
                This group can access only the selected collections.
 | 
			
		||||
            </label>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!group.accessAll">
 | 
			
		||||
            <div ng-show="loading && !collections.length">
 | 
			
		||||
                Loading collections...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !collections.length">
 | 
			
		||||
                <p>No collections for your organization.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="collections.length" style="margin: 0;">
 | 
			
		||||
                <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th style="width: 40px;">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       ng-checked="allSelected()"
 | 
			
		||||
                                       ng-click="toggleCollectionSelectionAll($event)">
 | 
			
		||||
                            </th>
 | 
			
		||||
                            <th>Name</th>
 | 
			
		||||
                            <th style="width: 100px; text-align: center;">Read Only</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="collection in collections | orderBy: ['name']">
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedCollections[]"
 | 
			
		||||
                                       value="{{collection.id}}"
 | 
			
		||||
                                       ng-checked="collectionSelected(collection)"
 | 
			
		||||
                                       ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                {{collection.name}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 100px; text-align: center;" valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedCollectionsReadonly[]"
 | 
			
		||||
                                       value="{{collection.id}}"
 | 
			
		||||
                                       ng-disabled="!collectionSelected(collection)"
 | 
			
		||||
                                       ng-checked="collectionSelected(collection) && selectedCollections[collection.id].readOnly"
 | 
			
		||||
                                       ng-click="toggleCollectionReadOnlySelection(collection.id)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,55 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-users"></i> User Access <small>{{group.name}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-body">
 | 
			
		||||
    <div ng-show="loading && !users.length">
 | 
			
		||||
        Loading...
 | 
			
		||||
    </div>
 | 
			
		||||
    <div ng-show="!loading && !users.length">
 | 
			
		||||
        <p>
 | 
			
		||||
            No users for this group. You can associate a new user to this group by
 | 
			
		||||
            selecting a specific user's "Groups" on the "People" page.
 | 
			
		||||
        </p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="table-responsive" ng-show="users.length" style="margin: 0;">
 | 
			
		||||
        <table class="table table-striped table-hover table-vmiddle" style="margin: 0;">
 | 
			
		||||
            <tbody>
 | 
			
		||||
                <tr ng-repeat="user in users | orderBy: ['email']">
 | 
			
		||||
                    <td style="width: 70px;">
 | 
			
		||||
                        <div class="btn-group" data-append-to=".modal">
 | 
			
		||||
                            <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                            </button>
 | 
			
		||||
                            <ul class="dropdown-menu">
 | 
			
		||||
                                <li ng-show="user.organizationUserId">
 | 
			
		||||
                                    <a href="#" stop-click ng-click="remove(user)" class="text-red">
 | 
			
		||||
                                        <i class="fa fa-fw fa-remove"></i> Remove
 | 
			
		||||
                                    </a>
 | 
			
		||||
                                </li>
 | 
			
		||||
                            </ul>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 45px;">
 | 
			
		||||
                        <letter-avatar data="{{user.name || user.email}}"></letter-avatar>
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td>
 | 
			
		||||
                        {{user.email}}
 | 
			
		||||
                        <div ng-if="user.name"><small class="text-muted">{{user.name}}</small></div>
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 100px;">
 | 
			
		||||
                        {{user.type | enumName: 'OrgUserType'}}
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 120px;">
 | 
			
		||||
                        <span class="label {{user.status | enumLabelClass: 'OrgUserStatus'}}">
 | 
			
		||||
                            {{user.status | enumName: 'OrgUserStatus'}}
 | 
			
		||||
                        </span>
 | 
			
		||||
                    </td>
 | 
			
		||||
                </tr>
 | 
			
		||||
            </tbody>
 | 
			
		||||
        </table>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-footer">
 | 
			
		||||
    <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,96 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        People
 | 
			
		||||
        <small>users for your organization</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="box">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
             
 | 
			
		||||
            <div class="box-filters hidden-xs">
 | 
			
		||||
                <div class="form-group form-group-sm has-feedback has-feedback-left">
 | 
			
		||||
                    <input type="text" id="filterSearch" class="form-control" placeholder="Search people..."
 | 
			
		||||
                           style="width: 200px;" ng-model="filterSearch">
 | 
			
		||||
                    <span class="fa fa-search form-control-feedback text-muted" aria-hidden="true"></span>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-tools">
 | 
			
		||||
                <button type="button" class="btn btn-primary btn-sm btn-flat" ng-click="invite()">
 | 
			
		||||
                    <i class="fa fa-fw fa-plus-circle"></i> Invite User
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body" ng-class="{'no-padding': filteredUsers.length}">
 | 
			
		||||
            <div ng-show="!filteredUsers.length && !filterSearch">
 | 
			
		||||
                Loading...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="filteredUsers.length">
 | 
			
		||||
                <table class="table table-striped table-hover table-vmiddle">
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="user in filteredUsers = (users | filter: (filterSearch || '') |
 | 
			
		||||
                            orderBy: ['type', 'name', 'email']) track by user.id">
 | 
			
		||||
                            <td style="width: 70px;">
 | 
			
		||||
                                <div class="btn-group" data-append-to="body">
 | 
			
		||||
                                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                        <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                                    </button>
 | 
			
		||||
                                    <ul class="dropdown-menu">
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="edit(user)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-pencil"></i> Edit
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="groups(user)" ng-if="useGroups">
 | 
			
		||||
                                                <i class="fa fa-fw fa-sitemap"></i> Groups
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="events(user)"
 | 
			
		||||
                                               ng-if="useEvents && user.status === 2">
 | 
			
		||||
                                                <i class="fa fa-fw fa-file-text-o"></i> Event Logs
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li ng-show="user.status === 1">
 | 
			
		||||
                                            <a href="#" stop-click ng-click="confirm(user)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-check"></i> Confirm
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li ng-show="user.status === 0">
 | 
			
		||||
                                            <a href="#" stop-click ng-click="reinvite(user)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-envelope-o"></i> Re-send Invitation
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="delete(user)" class="text-red">
 | 
			
		||||
                                                <i class="fa fa-fw fa-remove"></i> Remove
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                    </ul>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 45px;">
 | 
			
		||||
                                <letter-avatar data="{{user.name || user.email}}"></letter-avatar>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td>
 | 
			
		||||
                                <a href="#" stop-click ng-click="edit(user)">{{user.email}}</a>
 | 
			
		||||
                                <i class="fa fa-unlock text-muted" ng-show="user.accessAll"
 | 
			
		||||
                                   title="Can Access All Items"></i>
 | 
			
		||||
                                <div ng-if="user.name"><small class="text-muted">{{user.name}}</small></div>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 100px;">
 | 
			
		||||
                                {{user.type | enumName: 'OrgUserType'}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 120px;">
 | 
			
		||||
                                <span class="label {{user.status | enumLabelClass: 'OrgUserStatus'}}">
 | 
			
		||||
                                    {{user.status | enumName: 'OrgUserStatus'}}
 | 
			
		||||
                                </span>
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,101 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-user"></i> Edit User <small>{{email}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <h4>User Type</h4>
 | 
			
		||||
        <div class="form-group">
 | 
			
		||||
            <div class="radio">
 | 
			
		||||
                <label>
 | 
			
		||||
                    <input type="radio" id="user-type" ng-model="type" name="Type" value="2" ng-checked="type === 2">
 | 
			
		||||
                    <strong>User</strong> - A regular user with access to your organization's collections.
 | 
			
		||||
                </label>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="radio">
 | 
			
		||||
                <label>
 | 
			
		||||
                    <input type="radio" ng-model="type" name="Type" value="1" ng-checked="type === 1">
 | 
			
		||||
                    <strong>Admin</strong> - Admins can manage collections and users for your organization.
 | 
			
		||||
                </label>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="radio">
 | 
			
		||||
                <label>
 | 
			
		||||
                    <input type="radio" ng-model="type" name="Type" value="0" ng-checked="type === 0">
 | 
			
		||||
                    <strong>Owner</strong> - The highest access user that can manage all aspects of your organization.
 | 
			
		||||
                </label>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <h4>Access</h4>
 | 
			
		||||
        <div class="radio">
 | 
			
		||||
            <label>
 | 
			
		||||
                <input type="radio" ng-model="accessAll" name="AccessAll"
 | 
			
		||||
                       ng-value="true" ng-checked="accessAll">
 | 
			
		||||
                This user can access and modify <u>all items</u>.
 | 
			
		||||
            </label>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="radio">
 | 
			
		||||
            <label>
 | 
			
		||||
                <input type="radio" ng-model="accessAll" name="AccessAll"
 | 
			
		||||
                       ng-value="false" ng-checked="!accessAll">
 | 
			
		||||
                This user can access only the selected collections.
 | 
			
		||||
            </label>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!accessAll">
 | 
			
		||||
            <div ng-show="loading && !collections.length">
 | 
			
		||||
                Loading collections...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !collections.length">
 | 
			
		||||
                <p>No collections for your organization.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="collections.length" style="margin: 0;">
 | 
			
		||||
                <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th style="width: 40px;">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       ng-checked="allSelected()"
 | 
			
		||||
                                       ng-click="toggleCollectionSelectionAll($event)">
 | 
			
		||||
                            </th>
 | 
			
		||||
                            <th>Name</th>
 | 
			
		||||
                            <th style="width: 100px; text-align: center;">Read Only</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="collection in collections | orderBy: ['name']">
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedCollections[]"
 | 
			
		||||
                                       value="{{collection.id}}"
 | 
			
		||||
                                       ng-checked="collectionSelected(collection)"
 | 
			
		||||
                                       ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                {{collection.name}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="text-align: center;" valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedCollectionsReadonly[]"
 | 
			
		||||
                                       value="{{collection.id}}"
 | 
			
		||||
                                       ng-disabled="!collectionSelected(collection)"
 | 
			
		||||
                                       ng-checked="collectionSelected(collection) && selectedCollections[collection.id].readOnly"
 | 
			
		||||
                                       ng-click="toggleCollectionReadOnlySelection(collection.id)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,56 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-file-text-o"></i> User Event Logs <small>{{email}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-body">
 | 
			
		||||
    <div class="hidden-xs">
 | 
			
		||||
        <input type="datetime-local" ng-model="filterStart" required
 | 
			
		||||
               class="form-control input-sm" style="width:initial; display: inline;" />
 | 
			
		||||
        -
 | 
			
		||||
        <input type="datetime-local" ng-model="filterEnd" required
 | 
			
		||||
               class="form-control input-sm" style="width:initial; display: inline;" />
 | 
			
		||||
        <button type="button" class="btn btn-primary btn-sm btn-flat" ng-click="refresh()">
 | 
			
		||||
            <i class="fa fa-fw fa-refresh" ng-class="{'fa-spin': loading}"></i> Refresh
 | 
			
		||||
        </button>
 | 
			
		||||
        <hr />
 | 
			
		||||
    </div>
 | 
			
		||||
    <div ng-show="loading && !events.length">
 | 
			
		||||
        Loading...
 | 
			
		||||
    </div>
 | 
			
		||||
    <div ng-show="!loading && !events.length">
 | 
			
		||||
        <p>There are no events to list.</p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="table-responsive" ng-show="events.length" style="margin: 0;">
 | 
			
		||||
        <table class="table table-striped table-hover" style="{{ !continuationToken ? 'margin: 0;' : '' }}">
 | 
			
		||||
            <thead>
 | 
			
		||||
                <tr>
 | 
			
		||||
                    <th>Timestamp</th>
 | 
			
		||||
                    <th><span class="sr-only">App</span></th>
 | 
			
		||||
                    <th>Event</th>
 | 
			
		||||
                </tr>
 | 
			
		||||
            </thead>
 | 
			
		||||
            <tbody>
 | 
			
		||||
                <tr ng-repeat="event in filteredEvents = (events)">
 | 
			
		||||
                    <td style="width: 210px; min-width: 100px;">
 | 
			
		||||
                        {{event.date | date:'medium'}}
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 20px;" class="text-center">
 | 
			
		||||
                        <i class="text-muted fa fa-lg {{event.appIcon}}" title="{{event.appName}}, {{event.ip}}"></i>
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td>
 | 
			
		||||
                        <div ng-bind-html="event.message"></div>
 | 
			
		||||
                    </td>
 | 
			
		||||
                </tr>
 | 
			
		||||
            </tbody>
 | 
			
		||||
        </table>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="text-center" ng-show="continuationToken">
 | 
			
		||||
        <button class="btn btn-link btn-block" ng-click="next()" ng-if="!loading">
 | 
			
		||||
            Load more...
 | 
			
		||||
        </button>
 | 
			
		||||
        <i class="fa fa-fw fa-refresh fa-spin text-muted" ng-if="loading"></i>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-footer">
 | 
			
		||||
    <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,55 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-sitemap"></i> Edit User Groups <small>{{orgUser.email}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="loading && !groups.length">
 | 
			
		||||
            Loading...
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!loading && !groups.length">
 | 
			
		||||
            <p>No groups for your organization.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <p ng-show="groups.length">Edit the groups that this user belongs to.</p>
 | 
			
		||||
        <div class="table-responsive" ng-show="groups.length" style="margin: 0;">
 | 
			
		||||
            <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                <thead>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <th style="width: 40px;">
 | 
			
		||||
                            <input type="checkbox"
 | 
			
		||||
                                   ng-checked="allSelected()"
 | 
			
		||||
                                   ng-click="toggleGroupSelectionAll($event)">
 | 
			
		||||
                        </th>
 | 
			
		||||
                        <th>Name</th>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </thead>
 | 
			
		||||
                <tbody>
 | 
			
		||||
                    <tr ng-repeat="group in groups | orderBy: ['name']">
 | 
			
		||||
                        <td valign="middle">
 | 
			
		||||
                            <input type="checkbox"
 | 
			
		||||
                                   name="selectedGroups[]"
 | 
			
		||||
                                   value="{{group.id}}"
 | 
			
		||||
                                   ng-checked="groupSelected(group)"
 | 
			
		||||
                                   ng-click="toggleGroupSelection(group.id)">
 | 
			
		||||
                        </td>
 | 
			
		||||
                        <td valign="middle">
 | 
			
		||||
                            {{group.name}}
 | 
			
		||||
                        </td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </tbody>
 | 
			
		||||
            </table>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,110 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-user"></i> Invite User</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="inviteForm" ng-submit="inviteForm.$valid && submit(model)" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>
 | 
			
		||||
            Invite a new user to your organization by entering their Bitwarden account email address below. If they do not have
 | 
			
		||||
            a Bitwarden account already, they will be prompted to create a new account.
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="inviteForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in inviteForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="emails">Email</label>
 | 
			
		||||
            <input type="text" id="emails" name="Emails" ng-model="model.emails" class="form-control" required api-field />
 | 
			
		||||
            <p class="help-block">You can invite up to 20 users at a time by comma separating a list of email addresses.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <h4>User Type</h4>
 | 
			
		||||
        <div class="form-group">
 | 
			
		||||
            <div class="radio">
 | 
			
		||||
                <label>
 | 
			
		||||
                    <input type="radio" id="user-type" ng-model="model.type" name="Type" value="User">
 | 
			
		||||
                    <strong>User</strong> - A regular user with access to your organization's collections.
 | 
			
		||||
                </label>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="radio">
 | 
			
		||||
                <label>
 | 
			
		||||
                    <input type="radio" ng-model="model.type" name="Type" value="Admin">
 | 
			
		||||
                    <strong>Admin</strong> - Admins can manage collections and users for your organization.
 | 
			
		||||
                </label>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="radio">
 | 
			
		||||
                <label>
 | 
			
		||||
                    <input type="radio" ng-model="model.type" name="Type" value="Owner">
 | 
			
		||||
                    <strong>Owner</strong> - The highest access user that can manage all aspects of your organization.
 | 
			
		||||
                </label>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <h4>Access</h4>
 | 
			
		||||
        <div class="radio">
 | 
			
		||||
            <label>
 | 
			
		||||
                <input type="radio" ng-model="model.accessAll" name="AccessAll"
 | 
			
		||||
                       ng-value="true" ng-checked="model.accessAll">
 | 
			
		||||
                This user can access and modify <u>all items</u>.
 | 
			
		||||
            </label>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="radio">
 | 
			
		||||
            <label>
 | 
			
		||||
                <input type="radio" ng-model="model.accessAll" name="AccessAll"
 | 
			
		||||
                       ng-value="false" ng-checked="!model.accessAll">
 | 
			
		||||
                This user can access only the selected collections.
 | 
			
		||||
            </label>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!model.accessAll">
 | 
			
		||||
            <div ng-show="loading && !collections.length">
 | 
			
		||||
                Loading collections...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !collections.length">
 | 
			
		||||
                <p>No collections for your organization.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="collections.length" style="margin: 0;">
 | 
			
		||||
                <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th style="width: 40px;">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       ng-checked="allSelected()"
 | 
			
		||||
                                       ng-click="toggleCollectionSelectionAll($event)">
 | 
			
		||||
                            </th>
 | 
			
		||||
                            <th>Name</th>
 | 
			
		||||
                            <th style="width: 100px; text-align: center;">Read Only</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="collection in collections | orderBy: ['name'] track by collection.id">
 | 
			
		||||
                            <td style="width: 40px;" valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedCollections[]"
 | 
			
		||||
                                       value="{{collection.id}}"
 | 
			
		||||
                                       ng-checked="collectionSelected(collection)"
 | 
			
		||||
                                       ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                {{collection.name}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 100px; text-align: center;" valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedCollectionsReadonly[]"
 | 
			
		||||
                                       value="{{collection.id}}"
 | 
			
		||||
                                       ng-disabled="!collectionSelected(collection)"
 | 
			
		||||
                                       ng-checked="collectionSelected(collection) && selectedCollections[collection.id].readOnly"
 | 
			
		||||
                                       ng-click="toggleCollectionReadOnlySelection(collection.id)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="inviteForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="inviteForm.$loading"></i>Send Invite
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,94 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Settings
 | 
			
		||||
        <small>manage your organization</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">General</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <form role="form" name="generalForm" ng-submit="generalForm.$valid && generalSave()" api-form="generalPromise"
 | 
			
		||||
              autocomplete="off">
 | 
			
		||||
            <div class="box-body">
 | 
			
		||||
                <div class="row">
 | 
			
		||||
                    <div class="col-sm-9">
 | 
			
		||||
                        <div class="callout callout-danger validation-errors" ng-show="generalForm.$errors">
 | 
			
		||||
                            <h4>Errors have occurred</h4>
 | 
			
		||||
                            <ul>
 | 
			
		||||
                                <li ng-repeat="e in generalForm.$errors">{{e}}</li>
 | 
			
		||||
                            </ul>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="form-group" show-errors>
 | 
			
		||||
                            <label for="name">Organization Name</label>
 | 
			
		||||
                            <input type="text" id="name" name="Name" ng-model="model.name" class="form-control"
 | 
			
		||||
                                   required api-field ng-readonly="selfHosted" />
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="form-group" show-errors>
 | 
			
		||||
                            <label for="name">Billing Email</label>
 | 
			
		||||
                            <input type="email" id="billingEmail" name="BillingEmail" ng-model="model.billingEmail"
 | 
			
		||||
                                   class="form-control" required api-field ng-readonly="selfHosted" />
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="form-group" show-errors>
 | 
			
		||||
                            <label for="name">Business Name</label>
 | 
			
		||||
                            <input type="text" id="businessName" name="BusinessName" ng-model="model.businessName"
 | 
			
		||||
                                   class="form-control" api-field ng-readonly="selfHosted" />
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div ng-if="!selfHosted">
 | 
			
		||||
                            <hr />
 | 
			
		||||
                            <strong>Tax Information</strong>
 | 
			
		||||
                            <div>{{model.businessAddress1}}</div>
 | 
			
		||||
                            <div>{{model.businessAddress2}}</div>
 | 
			
		||||
                            <div>{{model.businessAddress3}}</div>
 | 
			
		||||
                            <div>{{model.businessCountry}}</div>
 | 
			
		||||
                            <div>{{model.businessTaxNumber}}</div>
 | 
			
		||||
                            <p class="help-block">
 | 
			
		||||
                                Please <a href="https://bitwarden.com/contact/" target="_blank">contact support</a>
 | 
			
		||||
                                to provide (or update) tax information for your invoices.
 | 
			
		||||
                            </p>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="col-sm-3 settings-photo">
 | 
			
		||||
                        <letter-avatar data="{{model.name}}" round="false"
 | 
			
		||||
                                       avclass="img-responsive img-rounded" avwidth="200" avheight="200"
 | 
			
		||||
                                       fontsize="90"></letter-avatar>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-footer" ng-if="!selfHosted">
 | 
			
		||||
                <button type="submit" class="btn btn-primary btn-flat" ng-disabled="generalForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon" ng-show="generalForm.$loading"></i>Save
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Import/Export</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <p>
 | 
			
		||||
                Quickly import logins, collections, and other data. You can also export all of your organization's
 | 
			
		||||
                vault data in <code>.csv</code> format.
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            <button class="btn btn-default btn-flat" type="button" ng-click="import()">Import Data</button>
 | 
			
		||||
            <button class="btn btn-default btn-flat" type="button" ng-click="export()">Export Data</button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-danger">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Danger Zone</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            Careful, these actions are not reversible!
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            <button type="submit" class="btn btn-default btn-flat" ng-click="delete()">
 | 
			
		||||
                Delete Organization
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,142 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Org<span class="hidden-xs">anization</span> Vault
 | 
			
		||||
        <small>
 | 
			
		||||
            <span ng-pluralize
 | 
			
		||||
                  count="collections.length > 0 ? collections.length - 1 : 0"
 | 
			
		||||
                  when="{'1': '{} collection', 'other': '{} collections'}"></span>,
 | 
			
		||||
            <span ng-pluralize count="ciphers.length" when="{'1': '{} item', 'other': '{} items'}"></span>
 | 
			
		||||
        </small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <p ng-show="loading">Loading...</p>
 | 
			
		||||
    <div class="box" ng-show="!loading">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">
 | 
			
		||||
                <i class="fa {{selectedIcon}}"></i>
 | 
			
		||||
                {{selectedCollection ? selectedCollection.name : selectedTitle}}
 | 
			
		||||
                <small ng-pluralize count="filteredCiphers.length" when="{'1': '{} item', 'other': '{} items'}"></small>
 | 
			
		||||
            </h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body" ng-class="{'no-padding': filteredCiphers.length}">
 | 
			
		||||
            <div ng-show="!filteredCiphers.length">No items to list.</div>
 | 
			
		||||
            <div class="table-responsive" ng-show="filteredCiphers.length">
 | 
			
		||||
                <table class="table table-striped table-hover table-vmiddle">
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="cipher in filteredCiphers = (ciphers | filter: cipherFilter() |
 | 
			
		||||
                            filter: (searchVaultText || '') | orderBy: ['name', 'subTitle']) track by cipher.id">
 | 
			
		||||
                            <td style="width: 70px;">
 | 
			
		||||
                                <div class="btn-group" data-append-to="body">
 | 
			
		||||
                                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                        <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                                    </button>
 | 
			
		||||
                                    <ul class="dropdown-menu">
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="editCipher(cipher)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-pencil"></i> Edit
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="attachments(cipher)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-paperclip"></i> Attachments
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="editCollections(cipher)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-cubes"></i> Collections
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="viewEvents(cipher)" ng-if="useEvents">
 | 
			
		||||
                                                <i class="fa fa-fw fa-file-text-o"></i> Event Logs
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="deleteCipher(cipher)" class="text-red">
 | 
			
		||||
                                                <i class="fa fa-fw fa-trash"></i> Delete
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                    </ul>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td class="vault-icon">
 | 
			
		||||
                                <i class="fa fa-fw fa-lg {{::cipher.icon}}" ng-if="!cipher.meta.image"></i>
 | 
			
		||||
                                <img alt="" ng-if="cipher.meta.image" ng-src="{{cipher.meta.image}}"
 | 
			
		||||
                                     fallback-src="images/fa-globe.png" />
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td>
 | 
			
		||||
                                <a href="#" stop-click ng-click="editCipher(cipher)">{{cipher.name}}</a>
 | 
			
		||||
                                <i class="fa fa-paperclip text-muted" title="Attachments" ng-if="cipher.hasAttachments"
 | 
			
		||||
                                   stop-prop></i>
 | 
			
		||||
                                <div class="text-sm text-muted">{{cipher.subTitle}}</div>
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
<aside class="control-sidebar control-sidebar-light">
 | 
			
		||||
    <div class="tab-content">
 | 
			
		||||
        <form class="search-form">
 | 
			
		||||
            <label for="search" class="sr-only">Search</label>
 | 
			
		||||
            <div class="form-group has-feedback">
 | 
			
		||||
                <input type="search" id="search" class="form-control" placeholder="Search org vault..."
 | 
			
		||||
                       ng-model="searchVaultText" />
 | 
			
		||||
                <span class="fa fa-search form-control-feedback" aria-hidden="true"></span>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
        <ul class="control-sidebar-menu">
 | 
			
		||||
            <li ng-class="{active: selectedAll}">
 | 
			
		||||
                <a href="#" stop-click ng-click="filterAll()">
 | 
			
		||||
                    <i class="fa fa-th fa-fw"></i> All Items
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
        </ul>
 | 
			
		||||
        <h3 class="control-sidebar-heading">Types</h3>
 | 
			
		||||
        <div class="control-sidebar-section">
 | 
			
		||||
            <ul class="control-sidebar-menu">
 | 
			
		||||
                <li ng-class="{active: constants.cipherType.login === selectedType}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterType(constants.cipherType.login)">
 | 
			
		||||
                        <i class="fa fa-globe fa-fw"></i> Login
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li ng-class="{active: constants.cipherType.card === selectedType}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterType(constants.cipherType.card)">
 | 
			
		||||
                        <i class="fa fa-credit-card fa-fw"></i> Card
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li ng-class="{active: constants.cipherType.identity === selectedType}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterType(constants.cipherType.identity)">
 | 
			
		||||
                        <i class="fa fa-id-card-o fa-fw"></i> Identity
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li ng-class="{active: constants.cipherType.secureNote === selectedType}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterType(constants.cipherType.secureNote)">
 | 
			
		||||
                        <i class="fa fa-sticky-note-o fa-fw"></i> Secure Note
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <h3 class="control-sidebar-heading">Collections</h3>
 | 
			
		||||
        <div ng-show="loading && !collections.length">
 | 
			
		||||
            <p>Loading...</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!loading && !collections.length">
 | 
			
		||||
            <p>No collections.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="control-sidebar-section" ng-show="!loading && collections.length">
 | 
			
		||||
            <ul class="control-sidebar-menu">
 | 
			
		||||
                <li ng-repeat="collection in collections | orderBy: [collectionSort] track by collection.id"
 | 
			
		||||
                    ng-class="{active: selectedCollection && collection.id === selectedCollection.id}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterCollection(collection)">
 | 
			
		||||
                        <i class="fa fa-caret-right fa-fw"></i>
 | 
			
		||||
                        {{collection.name}}
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</aside>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,52 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-cubes"></i> Collections <small>{{cipher.name}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Edit the collections that this item is being shared with.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!collections.length" class="callout callout-default">
 | 
			
		||||
            <p>There are no collections yet for your organization.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="table-responsive" ng-show="collections.length" style="margin: 0;">
 | 
			
		||||
            <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                <thead>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <th style="width: 40px;">
 | 
			
		||||
                            <input type="checkbox"
 | 
			
		||||
                                   ng-checked="allSelected()"
 | 
			
		||||
                                   ng-click="toggleCollectionSelectionAll($event)">
 | 
			
		||||
                        </th>
 | 
			
		||||
                        <th>Name</th>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </thead>
 | 
			
		||||
                <tbody>
 | 
			
		||||
                    <tr ng-repeat="collection in collections | orderBy: ['name'] track by collection.id">
 | 
			
		||||
                        <td valign="middle">
 | 
			
		||||
                            <input type="checkbox"
 | 
			
		||||
                                   name="selectedCollections[]"
 | 
			
		||||
                                   value="{{collection.id}}"
 | 
			
		||||
                                   ng-checked="collectionSelected(collection)"
 | 
			
		||||
                                   ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                        </td>
 | 
			
		||||
                        <td valign="middle" ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                            {{collection.name}}
 | 
			
		||||
                        </td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </tbody>
 | 
			
		||||
            </table>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading" ng-show="collections.length">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Save
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,60 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-file-text-o"></i> Event Logs <small>{{cipher.name}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-body">
 | 
			
		||||
    <div class="hidden-xs">
 | 
			
		||||
        <input type="datetime-local" ng-model="filterStart" required
 | 
			
		||||
               class="form-control input-sm" style="width:initial; display: inline;" />
 | 
			
		||||
        -
 | 
			
		||||
        <input type="datetime-local" ng-model="filterEnd" required
 | 
			
		||||
               class="form-control input-sm" style="width:initial; display: inline;" />
 | 
			
		||||
        <button type="button" class="btn btn-primary btn-sm btn-flat" ng-click="refresh()">
 | 
			
		||||
            <i class="fa fa-fw fa-refresh" ng-class="{'fa-spin': loading}"></i> Refresh
 | 
			
		||||
        </button>
 | 
			
		||||
        <hr />
 | 
			
		||||
    </div>
 | 
			
		||||
    <div ng-show="loading && !events.length">
 | 
			
		||||
        Loading...
 | 
			
		||||
    </div>
 | 
			
		||||
    <div ng-show="!loading && !events.length">
 | 
			
		||||
        <p>There are no events to list.</p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="table-responsive" ng-show="events.length" style="margin: 0;">
 | 
			
		||||
        <table class="table table-striped table-hover" style="{{ !continuationToken ? 'margin: 0;' : '' }}">
 | 
			
		||||
            <thead>
 | 
			
		||||
                <tr>
 | 
			
		||||
                    <th>Timestamp</th>
 | 
			
		||||
                    <th><span class="sr-only">App</span></th>
 | 
			
		||||
                    <th>User</th>
 | 
			
		||||
                    <th>Event</th>
 | 
			
		||||
                </tr>
 | 
			
		||||
            </thead>
 | 
			
		||||
            <tbody>
 | 
			
		||||
                <tr ng-repeat="event in filteredEvents = (events)">
 | 
			
		||||
                    <td style="width: 210px; min-width: 100px;">
 | 
			
		||||
                        {{event.date | date:'medium'}}
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 20px;" class="text-center">
 | 
			
		||||
                        <i class="text-muted fa fa-lg {{event.appIcon}}" title="{{event.appName}}, {{event.ip}}"></i>
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td style="width: 150px; min-width: 100px;">
 | 
			
		||||
                        {{event.userName}}
 | 
			
		||||
                    </td>
 | 
			
		||||
                    <td>
 | 
			
		||||
                        {{event.message}}
 | 
			
		||||
                    </td>
 | 
			
		||||
                </tr>
 | 
			
		||||
            </tbody>
 | 
			
		||||
        </table>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="text-center" ng-show="continuationToken">
 | 
			
		||||
        <button class="btn btn-link btn-block" ng-click="next()" ng-if="!loading">
 | 
			
		||||
            Load more...
 | 
			
		||||
        </button>
 | 
			
		||||
        <i class="fa fa-fw fa-refresh fa-spin text-muted" ng-if="loading"></i>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-footer">
 | 
			
		||||
    <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,74 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Data Breach Report
 | 
			
		||||
        <small>have you been pwned?</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div ng-show="loading && !breachAccounts.length">
 | 
			
		||||
        <p>Loading...</p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div ng-show="!loading && error">
 | 
			
		||||
        <p>An error occurred trying to load the report. Try again...</p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="callout callout-danger" ng-show="!error && !loading && breachAccounts.length">
 | 
			
		||||
        <h4><i class="fa fa-frown-o"></i> Oh No, Data Breaches Found!</h4>
 | 
			
		||||
        <p>
 | 
			
		||||
            Your email ({{email}}) was found in {{breachAccounts.length}}
 | 
			
		||||
            <span ng-if="breachAccounts.length > 1">different</span> data
 | 
			
		||||
            <span ng-pluralize count="breachAccounts.length" when="{'1': 'breach', 'other': 'breaches'}"></span>
 | 
			
		||||
            online.
 | 
			
		||||
        </p>
 | 
			
		||||
        <p>
 | 
			
		||||
            A "breach" is an incident where a site's data has been illegally accessed by hackers and then released publicly.
 | 
			
		||||
            Review the types of data that were compromised (email addresses, passwords, credit cards etc.) and take appropriate
 | 
			
		||||
            action, such as changing passwords.
 | 
			
		||||
        </p>
 | 
			
		||||
        <a href="https://haveibeenpwned.com" rel="noopener" target="_blank" class="btn btn-default btn-flat">Check another email</a>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="callout callout-success" ng-show="!error && !loading && !breachAccounts.length">
 | 
			
		||||
        <h4><i class="fa fa-smile-o"></i> Good News, Nothing Found!</h4>
 | 
			
		||||
        <p>Your email ({{email}}) was not found in any known data breaches.</p>
 | 
			
		||||
        <a href="https://haveibeenpwned.com" rel="noopener" target="_blank" class="btn btn-default btn-flat">Check another email</a>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-danger" ng-repeat="breach in breachAccounts track by breach.id">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">{{breach.title}}</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body box-breach">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-2">
 | 
			
		||||
                    <img ng-src="{{breach.image}}" alt="{{breach.id}} logo" class="img-responsive" />
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-10">
 | 
			
		||||
                    <div class="row">
 | 
			
		||||
                        <div class="col-sm-8">
 | 
			
		||||
                            <p ng-bind-html="breach.description"></p>
 | 
			
		||||
                            <h5><b>Compromised Data</b></h5>
 | 
			
		||||
                            <ul>
 | 
			
		||||
                                <li ng-repeat="class in breach.classes">{{class}}</li>
 | 
			
		||||
                            </ul>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="col-sm-4">
 | 
			
		||||
                            <dl>
 | 
			
		||||
                                <dt><span class="hidden-sm">Website</dt>
 | 
			
		||||
                                <dd>{{breach.domain}}</dd>
 | 
			
		||||
                                <dt><span class="hidden-sm">Affected </span>Users</dt>
 | 
			
		||||
                                <dd>{{breach.count | number: 0}}</dd>
 | 
			
		||||
                                <dt><span class="hidden-sm">Breach </span>Occurred</dt>
 | 
			
		||||
                                <dd>{{breach.date | date: format: mediumDate}}</dd>
 | 
			
		||||
                                <dt><span class="hidden-sm">Breach </span>Reported</dt>
 | 
			
		||||
                                <dd>{{breach.reportedDate | date: format: mediumDate}}</dd>
 | 
			
		||||
                                <dt><span class="hidden-sm">Information </span>Updated</dt>
 | 
			
		||||
                                <dd>{{breach.modifiedDate | date: format: mediumDate}}</dd>
 | 
			
		||||
                            </dl>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    This data is brought to you as a service from
 | 
			
		||||
    <b><a href="https://haveibeenpwned.com/" target="_blank" rel="noopener">Have I been pwned?</a></b>.
 | 
			
		||||
    Please check out their wonderful services and subscribe to receive notifications about future data breaches.
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,164 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Settings
 | 
			
		||||
        <small>manage your account</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">General</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <form role="form" name="generalForm" ng-submit="generalForm.$valid && generalSave()" api-form="generalPromise"
 | 
			
		||||
              autocomplete="off">
 | 
			
		||||
            <div class="box-body">
 | 
			
		||||
                <div class="row">
 | 
			
		||||
                    <div class="col-sm-9">
 | 
			
		||||
                        <div class="callout callout-danger validation-errors" ng-show="generalForm.$errors">
 | 
			
		||||
                            <h4>Errors have occurred</h4>
 | 
			
		||||
                            <ul>
 | 
			
		||||
                                <li ng-repeat="e in generalForm.$errors">{{e}}</li>
 | 
			
		||||
                            </ul>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="form-group" show-errors>
 | 
			
		||||
                            <label for="name">Name</label>
 | 
			
		||||
                            <input type="text" id="name" name="Name" ng-model="model.profile.name" class="form-control"
 | 
			
		||||
                                   required api-field />
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="form-group">
 | 
			
		||||
                            <label for="email">Email - <a href="#" stop-click ng-click="changeEmail()">change</a></label>
 | 
			
		||||
                            <input type="text" id="email" ng-model="model.email" class="form-control" readonly />
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="form-group" show-errors>
 | 
			
		||||
                            <label for="culture">Language/Culture</label>
 | 
			
		||||
                            <select id="culture" name="Culture" ng-model="model.profile.culture" class="form-control" api-field>
 | 
			
		||||
                                <option value="en-US">English (US)</option>
 | 
			
		||||
                            </select>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="col-sm-3 settings-photo">
 | 
			
		||||
                        <letter-avatar data="{{model.profile.name || model.email}}" round="false"
 | 
			
		||||
                                       avclass="img-responsive img-rounded" avwidth="200" avheight="200"
 | 
			
		||||
                                       fontsize="90"></letter-avatar>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-footer">
 | 
			
		||||
                <button type="submit" class="btn btn-primary btn-flat" ng-disabled="generalForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon" ng-show="generalForm.$loading"></i>Save
 | 
			
		||||
                </button>
 | 
			
		||||
                <button type="button" class="btn btn-default btn-flat" ng-click="changeEmail()">
 | 
			
		||||
                    Change Email
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Master Password</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <form role="form" name="masterPasswordForm" ng-submit="masterPasswordForm.$valid && passwordHintSave()"
 | 
			
		||||
              api-form="passwordHintPromise" autocomplete="off">
 | 
			
		||||
            <div class="box-body">
 | 
			
		||||
                <div class="row">
 | 
			
		||||
                    <div class="col-sm-9">
 | 
			
		||||
                        <div class="callout callout-danger validation-errors" ng-show="masterPasswordForm.$errors">
 | 
			
		||||
                            <h4>Errors have occurred</h4>
 | 
			
		||||
                            <ul>
 | 
			
		||||
                                <li ng-repeat="e in masterPasswordForm.$errors">{{e}}</li>
 | 
			
		||||
                            </ul>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="form-group" show-errors>
 | 
			
		||||
                            <label for="hint">Master Password Hint</label>
 | 
			
		||||
                            <input type="text" id="hint" name="MasterPasswordHint" ng-model="model.profile.masterPasswordHint"
 | 
			
		||||
                                   class="form-control" api-field />
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-footer">
 | 
			
		||||
                <button type="submit" class="btn btn-primary btn-flat" ng-disabled="masterPasswordForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon" ng-show="masterPasswordForm.$loading"></i>Save
 | 
			
		||||
                </button>
 | 
			
		||||
                <button type="button" class="btn btn-default btn-flat" ng-click="changePassword()">
 | 
			
		||||
                    Change Master Password
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Web Vault Options</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <form role="form" name="optionsForm" ng-submit="optionsForm.$valid && optionsSave()" autocomplete="off">
 | 
			
		||||
            <div class="box-body">
 | 
			
		||||
                <div class="checkbox">
 | 
			
		||||
                    <label>
 | 
			
		||||
                        <input type="checkbox" ng-model="model.disableWebsiteIcons">
 | 
			
		||||
                        Disable Website Icons
 | 
			
		||||
                    </label>
 | 
			
		||||
                    <p class="help-block">Website Icons provide a recognizable image next to each login item in your vault.</p>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-footer">
 | 
			
		||||
                <button type="submit" class="btn btn-primary btn-flat" ng-disabled="optionsForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon" ng-show="optionsForm.$loading"></i>Save
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Organizations</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body" ng-if="!model.organizations || !model.organizations.length">
 | 
			
		||||
            No organizations yet for your account.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="list-group" ng-if="model.organizations && model.organizations.length">
 | 
			
		||||
            <div class="list-group-item" ng-repeat="org in model.organizations | orderBy: ['name']">
 | 
			
		||||
                <div class="btn-group" data-append-to="body">
 | 
			
		||||
                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                        <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <ul class="dropdown-menu">
 | 
			
		||||
                        <li>
 | 
			
		||||
                            <a href="#" stop-click ng-click="leaveOrganization(org)" class="text-red">
 | 
			
		||||
                                <i class="fa fa-fw fa-sign-out"></i> Leave
 | 
			
		||||
                            </a>
 | 
			
		||||
                        </li>
 | 
			
		||||
                    </ul>
 | 
			
		||||
                </div>
 | 
			
		||||
                <a href="#" stop-click ng-click="viewOrganization(org)">
 | 
			
		||||
                    <letter-avatar data="{{org.name}}" round="false" avwidth="25" avheight="25"
 | 
			
		||||
                                   avclass="img-rounded" fontsize="10"></letter-avatar>
 | 
			
		||||
                    {{org.name}}
 | 
			
		||||
                    <span class="label bg-gray" ng-if="!org.enabled">DISABLED</span>
 | 
			
		||||
                </a>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            <a ui-sref="backend.user.settingsCreateOrg" class="btn btn-default btn-flat">
 | 
			
		||||
                Create an Organization
 | 
			
		||||
            </a>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-danger">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Danger Zone</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            Careful, these actions are not reversible!
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="sessions()">
 | 
			
		||||
                Deauthorize Sessions
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="purge()">
 | 
			
		||||
                Purge Vault
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="delete()">
 | 
			
		||||
                Delete Account
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,35 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-globe"></i> {{index ? 'Edit Equivalent Domain' : 'Add Equivalent Domain'}}</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="domainAddEditForm" ng-submit="domainAddEditForm.$valid && submit(domainAddEditForm)" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="domainAddEditForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in domainAddEditForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <p>
 | 
			
		||||
            Enter a list of domains separated by commas.
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="name">Domains</label> <span>*</span>
 | 
			
		||||
            <textarea id="domains" name="Domains" ng-model="domains" class="form-control" placeholder="ex. google.com, gmail.com"
 | 
			
		||||
                      style="height: 100px;" required></textarea>
 | 
			
		||||
            <p class="help-block">
 | 
			
		||||
                Only "base" domains are allowed. Do not enter subdomains. For example, enter "google.com" instead of
 | 
			
		||||
                "www.google.com".
 | 
			
		||||
            </p>
 | 
			
		||||
            <p class="help-block">
 | 
			
		||||
                You can also enter "androidapp://package.name" to associate an android app with other website domains.
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat">
 | 
			
		||||
            Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,178 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>Billing <small>manage your membership</small></h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="callout callout-warning" ng-if="subscription && subscription.cancelled">
 | 
			
		||||
        <h4><i class="fa fa-warning"></i> Canceled</h4>
 | 
			
		||||
        The premium membership subscription has been canceled.
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="callout callout-warning" ng-if="subscription && subscription.markedForCancel">
 | 
			
		||||
        <h4><i class="fa fa-warning"></i> Pending Cancellation</h4>
 | 
			
		||||
        <p>
 | 
			
		||||
            The premium membership has been marked for cancellation at the end of the
 | 
			
		||||
            current billing period.
 | 
			
		||||
        </p>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="reinstate()">
 | 
			
		||||
            Reinstate
 | 
			
		||||
        </button>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Premium Membership</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <dl ng-if="selfHosted">
 | 
			
		||||
                <dt>Expiration</dt>
 | 
			
		||||
                <dd ng-if="loading">
 | 
			
		||||
                    Loading...
 | 
			
		||||
                </dd>
 | 
			
		||||
                <dd ng-if="!loading && expiration">
 | 
			
		||||
                    {{expiration | date: 'medium'}}
 | 
			
		||||
                </dd>
 | 
			
		||||
                <dd ng-if="!loading && !expiration">
 | 
			
		||||
                    Never expires
 | 
			
		||||
                </dd>
 | 
			
		||||
            </dl>
 | 
			
		||||
            <div class="row" ng-if="!selfHosted">
 | 
			
		||||
                <div class="col-md-5">
 | 
			
		||||
                    <dl>
 | 
			
		||||
                        <dt>Status</dt>
 | 
			
		||||
                        <dd>
 | 
			
		||||
                            <span style="text-transform: capitalize;">{{(subscription && subscription.status) || '-'}}</span>
 | 
			
		||||
                            <span ng-if="subscription.markedForCancel">- marked for cancellation</span>
 | 
			
		||||
                        </dd>
 | 
			
		||||
                        <dt>Next Charge</dt>
 | 
			
		||||
                        <dd>{{nextInvoice ? ((nextInvoice.date | date: 'mediumDate') + ', ' + (nextInvoice.amount | currency:'$')) : '-'}}</dd>
 | 
			
		||||
                    </dl>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-md-7">
 | 
			
		||||
                    <strong>Details</strong>
 | 
			
		||||
                    <div ng-show="loading">
 | 
			
		||||
                        Loading...
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="table-responsive" style="margin: 0;" ng-show="!loading">
 | 
			
		||||
                        <table class="table" style="margin: 0;">
 | 
			
		||||
                            <tbody>
 | 
			
		||||
                                <tr ng-repeat="item in subscription.items">
 | 
			
		||||
                                    <td>
 | 
			
		||||
                                        {{item.name}} {{item.qty > 1 ? '×' + item.qty : ''}}
 | 
			
		||||
                                        @ {{item.amount | currency:'$'}}
 | 
			
		||||
                                    </td>
 | 
			
		||||
                                    <td class="text-right">{{(item.qty * item.amount) | currency:'$'}} /{{item.interval}}</td>
 | 
			
		||||
                                </tr>
 | 
			
		||||
                            </tbody>
 | 
			
		||||
                        </table>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer" ng-if="!selfHosted && !loading && subscription &&
 | 
			
		||||
             (!subscription.cancelled || subscription.markedForCancel)">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="cancel()"
 | 
			
		||||
                    ng-if="!subscription.cancelled && !subscription.markedForCancel">
 | 
			
		||||
                Cancel
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="reinstate()"
 | 
			
		||||
                    ng-if="subscription.markedForCancel">
 | 
			
		||||
                Reinstate
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="license()"
 | 
			
		||||
                    ng-if="!subscription.cancelled">
 | 
			
		||||
                Download License
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer" ng-if="selfHosted">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="updateLicense()">
 | 
			
		||||
                Update License
 | 
			
		||||
            </button>
 | 
			
		||||
            <a href="https://vault.bitwarden.com" class="btn btn-default btn-flat" target="_blank">
 | 
			
		||||
                Manage Membership
 | 
			
		||||
            </a>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default" ng-if="storage && !selfHosted">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Storage</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <p>
 | 
			
		||||
                Your membership has a total of {{storage.maxGb}} GB of encrypted file storage.
 | 
			
		||||
                You are currently using {{storage.currentName}}.
 | 
			
		||||
            </p>
 | 
			
		||||
            <div class="progress" style="margin: 0;">
 | 
			
		||||
                <div class="progress-bar progress-bar-info" role="progressbar"
 | 
			
		||||
                     aria-valuenow="{{storage.percentage}}" aria-valuemin="0" aria-valuemax="1"
 | 
			
		||||
                     style="min-width: 50px; width: {{storage.percentage}}%;">
 | 
			
		||||
                    {{storage.percentage}}%
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer" ng-if="subscription && paymentSource && !subscription.cancelled">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="adjustStorage(true)">
 | 
			
		||||
                Add Storage
 | 
			
		||||
            </button>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="adjustStorage(false)">
 | 
			
		||||
                Remove Storage
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default" ng-if="!selfHosted">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Payment Method</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <div ng-show="loading">
 | 
			
		||||
                Loading...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !paymentSource">
 | 
			
		||||
                <i class="fa fa-credit-card"></i> No payment method on file.
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && paymentSource">
 | 
			
		||||
                <i class="fa" ng-class="{'fa-credit-card': paymentSource.type === 0,
 | 
			
		||||
                   'fa-university': paymentSource.type === 1, 'fa-paypal fa-fw text-blue': paymentSource.type === 2}"></i>
 | 
			
		||||
                {{paymentSource.description}}
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="changePayment()">
 | 
			
		||||
                {{ paymentSource ? 'Change Payment Method' : 'Add Payment Method' }}
 | 
			
		||||
            </button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default" ng-if="!selfHosted">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Charges</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <div ng-show="loading">
 | 
			
		||||
                Loading...
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loading && !charges.length">
 | 
			
		||||
                No charges.
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="charges.length">
 | 
			
		||||
                <table class="table">
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="charge in charges">
 | 
			
		||||
                            <td style="width: 200px">
 | 
			
		||||
                                {{charge.date | date: 'mediumDate'}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="min-width: 150px">
 | 
			
		||||
                                {{charge.paymentSource}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 150px; text-transform: capitalize;">
 | 
			
		||||
                                {{charge.status}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td class="text-right" style="width: 150px;">
 | 
			
		||||
                                {{charge.amount | currency:'$'}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            Note: Any charges will appear on your statement as <b>BITWARDEN</b>.
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,46 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-database"></i>
 | 
			
		||||
        {{add ? 'Add Storage' : 'Remove Storage'}}
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-default" ng-show="add">
 | 
			
		||||
            <h4><i class="fa fa-dollar"></i> Note About Charges</h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                Adding storage to your plan will result in adjustments to your billing totals and immediately charge your
 | 
			
		||||
                payment method on file. The first charge will be prorated for the remainder of the current billing cycle.
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-default" ng-show="!add">
 | 
			
		||||
            <h4><i class="fa fa-dollar"></i> Note About Charges</h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                Removing storage will result in adjustments to your billing totals that will be prorated as credits
 | 
			
		||||
                to your next billing charge.
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-md-6">
 | 
			
		||||
                <div class="form-group">
 | 
			
		||||
                    <label for="gb">{{add ? 'GB of Storage To Add' : 'GB of Storage To Remove'}}</label>
 | 
			
		||||
                    <input type="number" id="gb" name="StroageGbAdjustment" ng-model="storageAdjustment" class="form-control"
 | 
			
		||||
                           required min="0" max="99" />
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,433 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-credit-card"></i>
 | 
			
		||||
        {{existingPaymentMethod ? 'Change Payment Method' : 'Add Payment Method'}}
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="showPaymentOptions">
 | 
			
		||||
            <label class="radio-inline radio-boxed" ng-show="!hideCard">
 | 
			
		||||
                <input type="radio" name="PaymentMethod" value="card" ng-model="paymentMethod"
 | 
			
		||||
                       ng-change="changePaymentMethod('card')"><i class="fa fa-fw fa-credit-card"></i> Credit Card
 | 
			
		||||
            </label>
 | 
			
		||||
            <label class="radio-inline radio-boxed" ng-show="!hidePaypal">
 | 
			
		||||
                <input type="radio" name="PaymentMethod" value="paypal" ng-model="paymentMethod"
 | 
			
		||||
                       ng-change="changePaymentMethod('paypal')"><i class="fa fa-fw fa-paypal"></i> PayPal
 | 
			
		||||
            </label>
 | 
			
		||||
            <label class="radio-inline radio-boxed" ng-show="!hideBank">
 | 
			
		||||
                <input type="radio" name="PaymentMethod" value="bank" ng-model="paymentMethod"
 | 
			
		||||
                       ng-change="changePaymentMethod('bank')"><i class="fa fa-fw fa-bank"></i>
 | 
			
		||||
                Bank<span class="hidden-xs"> Account (ACH)</span>
 | 
			
		||||
            </label>
 | 
			
		||||
            <hr />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="paymentMethod === 'paypal'">
 | 
			
		||||
            <div id="bt-dropin-container"></div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="paymentMethod === 'bank'">
 | 
			
		||||
            <div class="callout callout-warning">
 | 
			
		||||
                <h4><i class="fa fa-warning"></i> You must verify your bank account</h4>
 | 
			
		||||
                <p>
 | 
			
		||||
                    Payment with a bank account is <u>only available to customers in the United States</u>.
 | 
			
		||||
                    You will be required to verify your bank account. We will make two micro-deposits within the next
 | 
			
		||||
                    1-2 business days. Enter these amounts in the organization's billing area to verify the bank account.
 | 
			
		||||
                    Failure to verify the bank account will result in a missed payment and your organization being
 | 
			
		||||
                    disabled.
 | 
			
		||||
                </p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-md-6">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <label for="routing_number">Routing Number</label>
 | 
			
		||||
                        <input type="text" id="routing_number" name="routing_number"
 | 
			
		||||
                               ng-model="bank.routing_number" class="form-control" required />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-md-6">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <label for="account_number">Account Number</label>
 | 
			
		||||
                        <input type="text" id="account_number" name="account_number"
 | 
			
		||||
                               ng-model="bank.account_number" class="form-control" required />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-md-6">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <label for="account_holder_name">Account Holder Name</label>
 | 
			
		||||
                        <input type="text" id="account_holder_name" name="account_holder_name"
 | 
			
		||||
                               ng-model="bank.account_holder_name" class="form-control" required />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-md-6">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <label for="account_holder_type">Account Type</label>
 | 
			
		||||
                        <select id="account_holder_type" class="form-control" name="account_holder_type"
 | 
			
		||||
                                ng-model="bank.account_holder_type" required>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="company">Company (Business)</option>
 | 
			
		||||
                            <option value="individual">Individual (Personal)</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="paymentMethod === 'card'">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-md-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="card_number">Card Number</label>
 | 
			
		||||
                        <input type="text" id="card_number" name="card_number" ng-model="card.number"
 | 
			
		||||
                               class="form-control" cc-number required api-field />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <ul class="list-inline">
 | 
			
		||||
                <li><div class="cc visa"></div></li>
 | 
			
		||||
                <li><div class="cc mastercard"></div></li>
 | 
			
		||||
                <li><div class="cc amex"></div></li>
 | 
			
		||||
                <li><div class="cc discover"></div></li>
 | 
			
		||||
                <li><div class="cc diners"></div></li>
 | 
			
		||||
                <li><div class="cc jcb"></div></li>
 | 
			
		||||
            </ul>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="exp_month">Expiration Month</label>
 | 
			
		||||
                        <select id="exp_month" class="form-control" ng-model="card.exp_month" required cc-exp-month
 | 
			
		||||
                                name="exp_month" api-field>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="01">01 - January</option>
 | 
			
		||||
                            <option value="02">02 - February</option>
 | 
			
		||||
                            <option value="03">03 - March</option>
 | 
			
		||||
                            <option value="04">04 - April</option>
 | 
			
		||||
                            <option value="05">05 - May</option>
 | 
			
		||||
                            <option value="06">06 - June</option>
 | 
			
		||||
                            <option value="07">07 - July</option>
 | 
			
		||||
                            <option value="08">08 - August</option>
 | 
			
		||||
                            <option value="09">09 - September</option>
 | 
			
		||||
                            <option value="10">10 - October</option>
 | 
			
		||||
                            <option value="11">11 - November</option>
 | 
			
		||||
                            <option value="12">12 - December</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="exp_year">Expiration Year</label>
 | 
			
		||||
                        <select id="exp_year" class="form-control" ng-model="card.exp_year" required cc-exp-year
 | 
			
		||||
                                name="exp_year" api-field>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="17">2017</option>
 | 
			
		||||
                            <option value="18">2018</option>
 | 
			
		||||
                            <option value="19">2019</option>
 | 
			
		||||
                            <option value="20">2020</option>
 | 
			
		||||
                            <option value="21">2021</option>
 | 
			
		||||
                            <option value="22">2022</option>
 | 
			
		||||
                            <option value="23">2023</option>
 | 
			
		||||
                            <option value="24">2024</option>
 | 
			
		||||
                            <option value="25">2025</option>
 | 
			
		||||
                            <option value="26">2026</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cvc">
 | 
			
		||||
                            CVC
 | 
			
		||||
                            <a href="https://www.cvvnumber.com/cvv.html" target="_blank" title="What is this?"
 | 
			
		||||
                               rel="noopener noreferrer">
 | 
			
		||||
                                <i class="fa fa-question-circle"></i>
 | 
			
		||||
                            </a>
 | 
			
		||||
                        </label>
 | 
			
		||||
                        <input type="text" id="cvc" ng-model="card.cvc" class="form-control" name="cvc"
 | 
			
		||||
                               cc-type="number.$ccType" cc-cvc required api-field />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="address_country">Country</label>
 | 
			
		||||
                        <select id="address_country" class="form-control" ng-model="card.address_country"
 | 
			
		||||
                                required name="address_country" api-field>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="US">United States</option>
 | 
			
		||||
                            <option value="CN">China</option>
 | 
			
		||||
                            <option value="FR">France</option>
 | 
			
		||||
                            <option value="DE">Germany</option>
 | 
			
		||||
                            <option value="CA">Canada</option>
 | 
			
		||||
                            <option value="GB">United Kingdom</option>
 | 
			
		||||
                            <option value="AU">Australia</option>
 | 
			
		||||
                            <option value="IN">India</option>
 | 
			
		||||
                            <option value="-" disabled></option>
 | 
			
		||||
                            <option value="AF">Afghanistan</option>
 | 
			
		||||
                            <option value="AX">Åland Islands</option>
 | 
			
		||||
                            <option value="AL">Albania</option>
 | 
			
		||||
                            <option value="DZ">Algeria</option>
 | 
			
		||||
                            <option value="AS">American Samoa</option>
 | 
			
		||||
                            <option value="AD">Andorra</option>
 | 
			
		||||
                            <option value="AO">Angola</option>
 | 
			
		||||
                            <option value="AI">Anguilla</option>
 | 
			
		||||
                            <option value="AQ">Antarctica</option>
 | 
			
		||||
                            <option value="AG">Antigua and Barbuda</option>
 | 
			
		||||
                            <option value="AR">Argentina</option>
 | 
			
		||||
                            <option value="AM">Armenia</option>
 | 
			
		||||
                            <option value="AW">Aruba</option>
 | 
			
		||||
                            <option value="AT">Austria</option>
 | 
			
		||||
                            <option value="AZ">Azerbaijan</option>
 | 
			
		||||
                            <option value="BS">Bahamas</option>
 | 
			
		||||
                            <option value="BH">Bahrain</option>
 | 
			
		||||
                            <option value="BD">Bangladesh</option>
 | 
			
		||||
                            <option value="BB">Barbados</option>
 | 
			
		||||
                            <option value="BY">Belarus</option>
 | 
			
		||||
                            <option value="BE">Belgium</option>
 | 
			
		||||
                            <option value="BZ">Belize</option>
 | 
			
		||||
                            <option value="BJ">Benin</option>
 | 
			
		||||
                            <option value="BM">Bermuda</option>
 | 
			
		||||
                            <option value="BT">Bhutan</option>
 | 
			
		||||
                            <option value="BO">Bolivia, Plurinational State of</option>
 | 
			
		||||
                            <option value="BQ">Bonaire, Sint Eustatius and Saba</option>
 | 
			
		||||
                            <option value="BA">Bosnia and Herzegovina</option>
 | 
			
		||||
                            <option value="BW">Botswana</option>
 | 
			
		||||
                            <option value="BV">Bouvet Island</option>
 | 
			
		||||
                            <option value="BR">Brazil</option>
 | 
			
		||||
                            <option value="IO">British Indian Ocean Territory</option>
 | 
			
		||||
                            <option value="BN">Brunei Darussalam</option>
 | 
			
		||||
                            <option value="BG">Bulgaria</option>
 | 
			
		||||
                            <option value="BF">Burkina Faso</option>
 | 
			
		||||
                            <option value="BI">Burundi</option>
 | 
			
		||||
                            <option value="KH">Cambodia</option>
 | 
			
		||||
                            <option value="CM">Cameroon</option>
 | 
			
		||||
                            <option value="CV">Cape Verde</option>
 | 
			
		||||
                            <option value="KY">Cayman Islands</option>
 | 
			
		||||
                            <option value="CF">Central African Republic</option>
 | 
			
		||||
                            <option value="TD">Chad</option>
 | 
			
		||||
                            <option value="CL">Chile</option>
 | 
			
		||||
                            <option value="CX">Christmas Island</option>
 | 
			
		||||
                            <option value="CC">Cocos (Keeling) Islands</option>
 | 
			
		||||
                            <option value="CO">Colombia</option>
 | 
			
		||||
                            <option value="KM">Comoros</option>
 | 
			
		||||
                            <option value="CG">Congo</option>
 | 
			
		||||
                            <option value="CD">Congo, the Democratic Republic of the</option>
 | 
			
		||||
                            <option value="CK">Cook Islands</option>
 | 
			
		||||
                            <option value="CR">Costa Rica</option>
 | 
			
		||||
                            <option value="CI">Côte d'Ivoire</option>
 | 
			
		||||
                            <option value="HR">Croatia</option>
 | 
			
		||||
                            <option value="CU">Cuba</option>
 | 
			
		||||
                            <option value="CW">Curaçao</option>
 | 
			
		||||
                            <option value="CY">Cyprus</option>
 | 
			
		||||
                            <option value="CZ">Czech Republic</option>
 | 
			
		||||
                            <option value="DK">Denmark</option>
 | 
			
		||||
                            <option value="DJ">Djibouti</option>
 | 
			
		||||
                            <option value="DM">Dominica</option>
 | 
			
		||||
                            <option value="DO">Dominican Republic</option>
 | 
			
		||||
                            <option value="EC">Ecuador</option>
 | 
			
		||||
                            <option value="EG">Egypt</option>
 | 
			
		||||
                            <option value="SV">El Salvador</option>
 | 
			
		||||
                            <option value="GQ">Equatorial Guinea</option>
 | 
			
		||||
                            <option value="ER">Eritrea</option>
 | 
			
		||||
                            <option value="EE">Estonia</option>
 | 
			
		||||
                            <option value="ET">Ethiopia</option>
 | 
			
		||||
                            <option value="FK">Falkland Islands (Malvinas)</option>
 | 
			
		||||
                            <option value="FO">Faroe Islands</option>
 | 
			
		||||
                            <option value="FJ">Fiji</option>
 | 
			
		||||
                            <option value="FI">Finland</option>
 | 
			
		||||
                            <option value="GF">French Guiana</option>
 | 
			
		||||
                            <option value="PF">French Polynesia</option>
 | 
			
		||||
                            <option value="TF">French Southern Territories</option>
 | 
			
		||||
                            <option value="GA">Gabon</option>
 | 
			
		||||
                            <option value="GM">Gambia</option>
 | 
			
		||||
                            <option value="GE">Georgia</option>
 | 
			
		||||
                            <option value="GH">Ghana</option>
 | 
			
		||||
                            <option value="GI">Gibraltar</option>
 | 
			
		||||
                            <option value="GR">Greece</option>
 | 
			
		||||
                            <option value="GL">Greenland</option>
 | 
			
		||||
                            <option value="GD">Grenada</option>
 | 
			
		||||
                            <option value="GP">Guadeloupe</option>
 | 
			
		||||
                            <option value="GU">Guam</option>
 | 
			
		||||
                            <option value="GT">Guatemala</option>
 | 
			
		||||
                            <option value="GG">Guernsey</option>
 | 
			
		||||
                            <option value="GN">Guinea</option>
 | 
			
		||||
                            <option value="GW">Guinea-Bissau</option>
 | 
			
		||||
                            <option value="GY">Guyana</option>
 | 
			
		||||
                            <option value="HT">Haiti</option>
 | 
			
		||||
                            <option value="HM">Heard Island and McDonald Islands</option>
 | 
			
		||||
                            <option value="VA">Holy See (Vatican City State)</option>
 | 
			
		||||
                            <option value="HN">Honduras</option>
 | 
			
		||||
                            <option value="HK">Hong Kong</option>
 | 
			
		||||
                            <option value="HU">Hungary</option>
 | 
			
		||||
                            <option value="IS">Iceland</option>
 | 
			
		||||
                            <option value="ID">Indonesia</option>
 | 
			
		||||
                            <option value="IR">Iran, Islamic Republic of</option>
 | 
			
		||||
                            <option value="IQ">Iraq</option>
 | 
			
		||||
                            <option value="IE">Ireland</option>
 | 
			
		||||
                            <option value="IM">Isle of Man</option>
 | 
			
		||||
                            <option value="IL">Israel</option>
 | 
			
		||||
                            <option value="IT">Italy</option>
 | 
			
		||||
                            <option value="JM">Jamaica</option>
 | 
			
		||||
                            <option value="JP">Japan</option>
 | 
			
		||||
                            <option value="JE">Jersey</option>
 | 
			
		||||
                            <option value="JO">Jordan</option>
 | 
			
		||||
                            <option value="KZ">Kazakhstan</option>
 | 
			
		||||
                            <option value="KE">Kenya</option>
 | 
			
		||||
                            <option value="KI">Kiribati</option>
 | 
			
		||||
                            <option value="KP">Korea, Democratic People's Republic of</option>
 | 
			
		||||
                            <option value="KR">Korea, Republic of</option>
 | 
			
		||||
                            <option value="KW">Kuwait</option>
 | 
			
		||||
                            <option value="KG">Kyrgyzstan</option>
 | 
			
		||||
                            <option value="LA">Lao People's Democratic Republic</option>
 | 
			
		||||
                            <option value="LV">Latvia</option>
 | 
			
		||||
                            <option value="LB">Lebanon</option>
 | 
			
		||||
                            <option value="LS">Lesotho</option>
 | 
			
		||||
                            <option value="LR">Liberia</option>
 | 
			
		||||
                            <option value="LY">Libya</option>
 | 
			
		||||
                            <option value="LI">Liechtenstein</option>
 | 
			
		||||
                            <option value="LT">Lithuania</option>
 | 
			
		||||
                            <option value="LU">Luxembourg</option>
 | 
			
		||||
                            <option value="MO">Macao</option>
 | 
			
		||||
                            <option value="MK">Macedonia, the former Yugoslav Republic of</option>
 | 
			
		||||
                            <option value="MG">Madagascar</option>
 | 
			
		||||
                            <option value="MW">Malawi</option>
 | 
			
		||||
                            <option value="MY">Malaysia</option>
 | 
			
		||||
                            <option value="MV">Maldives</option>
 | 
			
		||||
                            <option value="ML">Mali</option>
 | 
			
		||||
                            <option value="MT">Malta</option>
 | 
			
		||||
                            <option value="MH">Marshall Islands</option>
 | 
			
		||||
                            <option value="MQ">Martinique</option>
 | 
			
		||||
                            <option value="MR">Mauritania</option>
 | 
			
		||||
                            <option value="MU">Mauritius</option>
 | 
			
		||||
                            <option value="YT">Mayotte</option>
 | 
			
		||||
                            <option value="MX">Mexico</option>
 | 
			
		||||
                            <option value="FM">Micronesia, Federated States of</option>
 | 
			
		||||
                            <option value="MD">Moldova, Republic of</option>
 | 
			
		||||
                            <option value="MC">Monaco</option>
 | 
			
		||||
                            <option value="MN">Mongolia</option>
 | 
			
		||||
                            <option value="ME">Montenegro</option>
 | 
			
		||||
                            <option value="MS">Montserrat</option>
 | 
			
		||||
                            <option value="MA">Morocco</option>
 | 
			
		||||
                            <option value="MZ">Mozambique</option>
 | 
			
		||||
                            <option value="MM">Myanmar</option>
 | 
			
		||||
                            <option value="NA">Namibia</option>
 | 
			
		||||
                            <option value="NR">Nauru</option>
 | 
			
		||||
                            <option value="NP">Nepal</option>
 | 
			
		||||
                            <option value="NL">Netherlands</option>
 | 
			
		||||
                            <option value="NC">New Caledonia</option>
 | 
			
		||||
                            <option value="NZ">New Zealand</option>
 | 
			
		||||
                            <option value="NI">Nicaragua</option>
 | 
			
		||||
                            <option value="NE">Niger</option>
 | 
			
		||||
                            <option value="NG">Nigeria</option>
 | 
			
		||||
                            <option value="NU">Niue</option>
 | 
			
		||||
                            <option value="NF">Norfolk Island</option>
 | 
			
		||||
                            <option value="MP">Northern Mariana Islands</option>
 | 
			
		||||
                            <option value="NO">Norway</option>
 | 
			
		||||
                            <option value="OM">Oman</option>
 | 
			
		||||
                            <option value="PK">Pakistan</option>
 | 
			
		||||
                            <option value="PW">Palau</option>
 | 
			
		||||
                            <option value="PS">Palestinian Territory, Occupied</option>
 | 
			
		||||
                            <option value="PA">Panama</option>
 | 
			
		||||
                            <option value="PG">Papua New Guinea</option>
 | 
			
		||||
                            <option value="PY">Paraguay</option>
 | 
			
		||||
                            <option value="PE">Peru</option>
 | 
			
		||||
                            <option value="PH">Philippines</option>
 | 
			
		||||
                            <option value="PN">Pitcairn</option>
 | 
			
		||||
                            <option value="PL">Poland</option>
 | 
			
		||||
                            <option value="PT">Portugal</option>
 | 
			
		||||
                            <option value="PR">Puerto Rico</option>
 | 
			
		||||
                            <option value="QA">Qatar</option>
 | 
			
		||||
                            <option value="RE">Réunion</option>
 | 
			
		||||
                            <option value="RO">Romania</option>
 | 
			
		||||
                            <option value="RU">Russian Federation</option>
 | 
			
		||||
                            <option value="RW">Rwanda</option>
 | 
			
		||||
                            <option value="BL">Saint Barthélemy</option>
 | 
			
		||||
                            <option value="SH">Saint Helena, Ascension and Tristan da Cunha</option>
 | 
			
		||||
                            <option value="KN">Saint Kitts and Nevis</option>
 | 
			
		||||
                            <option value="LC">Saint Lucia</option>
 | 
			
		||||
                            <option value="MF">Saint Martin (French part)</option>
 | 
			
		||||
                            <option value="PM">Saint Pierre and Miquelon</option>
 | 
			
		||||
                            <option value="VC">Saint Vincent and the Grenadines</option>
 | 
			
		||||
                            <option value="WS">Samoa</option>
 | 
			
		||||
                            <option value="SM">San Marino</option>
 | 
			
		||||
                            <option value="ST">Sao Tome and Principe</option>
 | 
			
		||||
                            <option value="SA">Saudi Arabia</option>
 | 
			
		||||
                            <option value="SN">Senegal</option>
 | 
			
		||||
                            <option value="RS">Serbia</option>
 | 
			
		||||
                            <option value="SC">Seychelles</option>
 | 
			
		||||
                            <option value="SL">Sierra Leone</option>
 | 
			
		||||
                            <option value="SG">Singapore</option>
 | 
			
		||||
                            <option value="SX">Sint Maarten (Dutch part)</option>
 | 
			
		||||
                            <option value="SK">Slovakia</option>
 | 
			
		||||
                            <option value="SI">Slovenia</option>
 | 
			
		||||
                            <option value="SB">Solomon Islands</option>
 | 
			
		||||
                            <option value="SO">Somalia</option>
 | 
			
		||||
                            <option value="ZA">South Africa</option>
 | 
			
		||||
                            <option value="GS">South Georgia and the South Sandwich Islands</option>
 | 
			
		||||
                            <option value="SS">South Sudan</option>
 | 
			
		||||
                            <option value="ES">Spain</option>
 | 
			
		||||
                            <option value="LK">Sri Lanka</option>
 | 
			
		||||
                            <option value="SD">Sudan</option>
 | 
			
		||||
                            <option value="SR">Suriname</option>
 | 
			
		||||
                            <option value="SJ">Svalbard and Jan Mayen</option>
 | 
			
		||||
                            <option value="SZ">Swaziland</option>
 | 
			
		||||
                            <option value="SE">Sweden</option>
 | 
			
		||||
                            <option value="CH">Switzerland</option>
 | 
			
		||||
                            <option value="SY">Syrian Arab Republic</option>
 | 
			
		||||
                            <option value="TW">Taiwan, Province of China</option>
 | 
			
		||||
                            <option value="TJ">Tajikistan</option>
 | 
			
		||||
                            <option value="TZ">Tanzania, United Republic of</option>
 | 
			
		||||
                            <option value="TH">Thailand</option>
 | 
			
		||||
                            <option value="TL">Timor-Leste</option>
 | 
			
		||||
                            <option value="TG">Togo</option>
 | 
			
		||||
                            <option value="TK">Tokelau</option>
 | 
			
		||||
                            <option value="TO">Tonga</option>
 | 
			
		||||
                            <option value="TT">Trinidad and Tobago</option>
 | 
			
		||||
                            <option value="TN">Tunisia</option>
 | 
			
		||||
                            <option value="TR">Turkey</option>
 | 
			
		||||
                            <option value="TM">Turkmenistan</option>
 | 
			
		||||
                            <option value="TC">Turks and Caicos Islands</option>
 | 
			
		||||
                            <option value="TV">Tuvalu</option>
 | 
			
		||||
                            <option value="UG">Uganda</option>
 | 
			
		||||
                            <option value="UA">Ukraine</option>
 | 
			
		||||
                            <option value="AE">United Arab Emirates</option>
 | 
			
		||||
                            <option value="UM">United States Minor Outlying Islands</option>
 | 
			
		||||
                            <option value="UY">Uruguay</option>
 | 
			
		||||
                            <option value="UZ">Uzbekistan</option>
 | 
			
		||||
                            <option value="VU">Vanuatu</option>
 | 
			
		||||
                            <option value="VE">Venezuela, Bolivarian Republic of</option>
 | 
			
		||||
                            <option value="VN">Viet Nam</option>
 | 
			
		||||
                            <option value="VG">Virgin Islands, British</option>
 | 
			
		||||
                            <option value="VI">Virgin Islands, U.S.</option>
 | 
			
		||||
                            <option value="WF">Wallis and Futuna</option>
 | 
			
		||||
                            <option value="EH">Western Sahara</option>
 | 
			
		||||
                            <option value="YE">Yemen</option>
 | 
			
		||||
                            <option value="ZM">Zambia</option>
 | 
			
		||||
                            <option value="ZW">Zimbabwe</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="address_zip"
 | 
			
		||||
                               ng-bind="card.address_country === 'US' ? 'Zip Code' : 'Postal Code'"></label>
 | 
			
		||||
                        <input type="text" id="address_zip" ng-model="card.address_zip"
 | 
			
		||||
                               class="form-control" required name="address_zip" api-field />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,30 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-drivers-license"></i>
 | 
			
		||||
        Update License
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit(form)" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-error>
 | 
			
		||||
            <label for="file" class="sr-only">License</label>
 | 
			
		||||
            <input type="file" id="file" name="file" accept=".json" />
 | 
			
		||||
            <p class="help-block">
 | 
			
		||||
                Select your <code>.json</code> license file.
 | 
			
		||||
            </p>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,58 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title" id="changeEmailModelLabel"><i class="fa fa-at"></i> Change Email</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="changeEmailForm" ng-submit="changeEmailForm.$valid && token(model, changeEmailForm)" api-form="tokenPromise"
 | 
			
		||||
      ng-show="!tokenSent">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Below you can change your account's email address.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="changeEmailForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in changeEmailForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="model.masterPassword" class="form-control"
 | 
			
		||||
                   required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="newEmail">New Email</label>
 | 
			
		||||
            <input type="email" id="newEmail" name="NewEmail" ng-model="model.newEmail" class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="changeEmailForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="changeEmailForm.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
<form name="changeEmailConfirmForm" ng-submit="changeEmailConfirmForm.$valid && confirm(model)" api-form="confirmPromise"
 | 
			
		||||
      ng-show="tokenSent" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>We have emailed a verification code to <b>{{model.newEmail}}</b>. Please check your email for this code and enter it below to finalize your the email address change.</p>
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning</h4>
 | 
			
		||||
            Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices
 | 
			
		||||
            may continue to remain active for up to one hour.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="changeEmailConfirmForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in changeEmailConfirmForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="token">Code</label>
 | 
			
		||||
            <input type="number" id="token" name="Token" ng-model="model.token" class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="changeEmailConfirmForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="changeEmailConfirmForm.$loading"></i>Change Email
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,43 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title" id="changePasswrdModelLabel"><i class="fa fa-key"></i> Change Password</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="changePasswordForm" ng-submit="changePasswordForm.$valid && save(model, changePasswordForm)" api-form="savePromise">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Below you can change your account's master password.</p>
 | 
			
		||||
        <p>We recommend that you change your master password immediately if you believe that your credentials have been compromised.</p>
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning</h4>
 | 
			
		||||
            Proceeding will log you out of your current session, requiring you to log back in. Active sessions on other devices
 | 
			
		||||
            may continue to remain active for up to one hour.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="changePasswordForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in changePasswordForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Current Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="model.masterPassword" class="form-control"
 | 
			
		||||
                   required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <hr />
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="newMasterPassword">New Master Password</label>
 | 
			
		||||
            <input type="password" id="newMasterPassword" name="NewMasterPasswordHash" ng-model="model.newMasterPassword" class="form-control"
 | 
			
		||||
                   required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="confirmNewMasterPassword">Confirm New Master Password</label>
 | 
			
		||||
            <input type="password" id="confirmNewMasterPassword" name="ConfirmNewMasterPasswordHash" ng-model="model.confirmNewMasterPassword"
 | 
			
		||||
                   class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="changePasswordForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="changePasswordForm.$loading"></i>Change Password
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,697 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>Create Organization</h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <p>
 | 
			
		||||
        Organizations allow you to share parts of your vault with others as well as manage related users
 | 
			
		||||
        for a specific entity (such as a family, small team, or large company).
 | 
			
		||||
    </p>
 | 
			
		||||
    <form name="createOrgForm" ng-submit="createOrgForm.$valid && submit(model, createOrgForm)" api-form="submitPromise">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="createOrgForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in createOrgForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="selfHosted">
 | 
			
		||||
            <div class="box box-default">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">License</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <p>To create an on-premise hosted organization you need to upload a valid license file.</p>
 | 
			
		||||
                    <div class="form-group" show-error>
 | 
			
		||||
                        <label for="file" class="sr-only">License</label>
 | 
			
		||||
                        <input type="file" id="file" name="file" accept=".json" />
 | 
			
		||||
                        <p class="help-block">
 | 
			
		||||
                            Your license file will be named something like <code>bitwarden_organization_license.json</code>
 | 
			
		||||
                        </p>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-footer">
 | 
			
		||||
                    <button type="submit" class="btn btn-primary btn-flat" ng-disabled="createOrgForm.$loading">
 | 
			
		||||
                        <i class="fa fa-refresh fa-spin loading-icon" ng-show="createOrgForm.$loading"></i>Submit
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!selfHosted">
 | 
			
		||||
            <div class="box box-default">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">General Information</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <div class="row">
 | 
			
		||||
                        <div class="col-md-6">
 | 
			
		||||
                            <div class="form-group" show-errors>
 | 
			
		||||
                                <label for="name">Organization Name</label>
 | 
			
		||||
                                <input type="text" id="name" name="Name" ng-model="model.name" class="form-control"
 | 
			
		||||
                                       required api-field />
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="col-md-6">
 | 
			
		||||
                            <div class="form-group" show-errors>
 | 
			
		||||
                                <label for="billingEmail">Billing Email</label>
 | 
			
		||||
                                <input type="email" id="billingEmail" name="BillingEmail" ng-model="model.billingEmail"
 | 
			
		||||
                                       class="form-control" required api-field />
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="checkbox">
 | 
			
		||||
                        <label>
 | 
			
		||||
                            <input type="checkbox" ng-model="model.ownedBusiness" ng-click="changedBusiness()">
 | 
			
		||||
                            This account is owned by a business.
 | 
			
		||||
                        </label>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="row" ng-show="model.ownedBusiness">
 | 
			
		||||
                        <div class="col-md-6">
 | 
			
		||||
                            <div class="form-group" show-errors>
 | 
			
		||||
                                <label for="businessName">Business Name</label>
 | 
			
		||||
                                <input type="text" id="businessName" name="BusinessName" ng-model="model.businessName"
 | 
			
		||||
                                       class="form-control" api-field />
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box box-default">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">Choose Your Plan</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <div class="radio radio-block" ng-if="!model.ownedBusiness" ng-click="changedPlan()">
 | 
			
		||||
                        <label>
 | 
			
		||||
                            <input type="radio" ng-model="model.plan" name="PlanType" value="free">
 | 
			
		||||
                            Free
 | 
			
		||||
                            <span>For personal users to share with 1 other user.</span>
 | 
			
		||||
                            <span>- Limit 2 users (including you)</span>
 | 
			
		||||
                            <span>- Limit 2 collections</span>
 | 
			
		||||
                            <span class="bottom-line">
 | 
			
		||||
                                Free forever
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </label>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="radio radio-block" ng-if="!model.ownedBusiness" ng-click="changedPlan()">
 | 
			
		||||
                        <label>
 | 
			
		||||
                            <input type="radio" ng-model="model.plan" name="PlanType" value="families">
 | 
			
		||||
                            Families
 | 
			
		||||
                            <span>For personal use, to share with family & friends.</span>
 | 
			
		||||
                            <span>- Add and share with up to 5 users</span>
 | 
			
		||||
                            <span>- Create unlimited collections</span>
 | 
			
		||||
                            <span>- 1 GB encrypted file storage</span>
 | 
			
		||||
                            <span>- Self-hosting (optional)</span>
 | 
			
		||||
                            <span>- Priority customer support</span>
 | 
			
		||||
                            <span>- 7 day free trial, cancel anytime</span>
 | 
			
		||||
                            <span class="bottom-line">
 | 
			
		||||
                                {{plans.families.basePrice | currency:'$'}} /month includes {{plans.families.baseSeats}} users
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </label>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="radio radio-block" ng-click="changedPlan()">
 | 
			
		||||
                        <label>
 | 
			
		||||
                            <input type="radio" ng-model="model.plan" name="PlanType" value="teams">
 | 
			
		||||
                            Teams
 | 
			
		||||
                            <span>For businesses and other team organizations.</span>
 | 
			
		||||
                            <span>- Add and share with unlimited users</span>
 | 
			
		||||
                            <span>- Create unlimited collections</span>
 | 
			
		||||
                            <span>- 1 GB encrypted file storage</span>
 | 
			
		||||
                            <span>- Priority customer support</span>
 | 
			
		||||
                            <span>- 7 day free trial, cancel anytime</span>
 | 
			
		||||
                            <span class="bottom-line">
 | 
			
		||||
                                {{plans.teams.basePrice | currency:'$'}} /month includes {{plans.teams.baseSeats}} users,
 | 
			
		||||
                                additional users {{plans.teams.seatPrice | currency:'$'}} /month
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </label>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="radio radio-block" ng-click="changedPlan()">
 | 
			
		||||
                        <label>
 | 
			
		||||
                            <input type="radio" ng-model="model.plan" name="PlanType" value="enterprise">
 | 
			
		||||
                            Enterprise
 | 
			
		||||
                            <span>For businesses and other large organizations.</span>
 | 
			
		||||
                            <span>- Add and share with unlimited users</span>
 | 
			
		||||
                            <span>- Create unlimited collections</span>
 | 
			
		||||
                            <span>- 1 GB encrypted file storage</span>
 | 
			
		||||
                            <span>- Control user access with groups</span>
 | 
			
		||||
                            <span>- Sync your users and groups from a directory (AD, Azure AD, GSuite, LDAP)</span>
 | 
			
		||||
                            <span>- On-premise hosting (optional)</span>
 | 
			
		||||
                            <span>- Priority customer support</span>
 | 
			
		||||
                            <span>- 7 day free trial, cancel anytime</span>
 | 
			
		||||
                            <span class="bottom-line">
 | 
			
		||||
                                {{plans.enterprise.seatPrice | currency:'$'}} per user /month
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </label>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-footer" ng-show="plans[model.plan].noPayment">
 | 
			
		||||
                    <button type="submit" class="btn btn-primary btn-flat" ng-disabled="createOrgForm.$loading">
 | 
			
		||||
                        <i class="fa fa-refresh fa-spin loading-icon" ng-show="createOrgForm.$loading"></i>Submit
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box box-default" ng-if="!plans[model.plan].noAdditionalSeats && plans[model.plan].baseSeats">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">Additional Users (Seats)</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <p>
 | 
			
		||||
                        Your plan comes with <b>{{plans[model.plan].baseSeats}}</b> users (seats). You can add additional users
 | 
			
		||||
                        <span ng-if="plans[model.plan].maxAdditionalSeats">
 | 
			
		||||
                            (up to {{plans[model.plan].maxAdditionalSeats}} more)
 | 
			
		||||
                        </span>
 | 
			
		||||
                        for {{plans[model.plan].seatPrice | currency:'$'}} per user /month.
 | 
			
		||||
                    </p>
 | 
			
		||||
                    <div class="row">
 | 
			
		||||
                        <div class="col-md-4">
 | 
			
		||||
                            <div class="form-group" show-errors style="margin: 0;">
 | 
			
		||||
                                <label for="additionalSeats" class="sr-only">Additional Users</label>
 | 
			
		||||
                                <input type="number" id="additionalSeats" name="AdditionalSeats" ng-model="model.additionalSeats"
 | 
			
		||||
                                       min="0" class="form-control" placeholder="# of users" api-field
 | 
			
		||||
                                       ng-attr-max="{{plans[model.plan].maxAdditionalSeats || 1000000}}" />
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box box-default" ng-if="!plans[model.plan].noAdditionalSeats && !plans[model.plan].baseSeats">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">Users (Seats)</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <p>
 | 
			
		||||
                        How many user seats do you need?
 | 
			
		||||
                        You can also add additional seats later if needed.
 | 
			
		||||
                    </p>
 | 
			
		||||
                    <div class="row">
 | 
			
		||||
                        <div class="col-md-4">
 | 
			
		||||
                            <div class="form-group" show-errors style="margin: 0;">
 | 
			
		||||
                                <label for="additionalSeats" class="sr-only">Users</label>
 | 
			
		||||
                                <input type="number" id="additionalSeats" name="AdditionalSeats" ng-model="model.additionalSeats"
 | 
			
		||||
                                       min="1" class="form-control" placeholder="# of users" api-field
 | 
			
		||||
                                       ng-attr-max="{{plans[model.plan].maxAdditionalSeats || 1000000}}" />
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box box-default" ng-if="!plans[model.plan].noPayment">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">Additional Storage</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <div class="form-group" show-errors style="margin: 0;">
 | 
			
		||||
                        <p>
 | 
			
		||||
                            Your plan comes with 1 GB of encrypted file storage. You can add additional
 | 
			
		||||
                            storage for {{storageGb.price | currency:"$":2}} per GB /month.
 | 
			
		||||
                        </p>
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-md-4">
 | 
			
		||||
                                <label for="additionalStorage" class="sr-only">Storage</label>
 | 
			
		||||
                                <input type="number" id="additionalStorage" name="AdditionalStorageGb"
 | 
			
		||||
                                       ng-model="model.additionalStorageGb" min="0" max="99" step="1" class="form-control"
 | 
			
		||||
                                       placeholder="# of additional GB" api-field />
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box box-default" ng-if="!plans[model.plan].noPayment">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">Billing Summary</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <div class="radio radio-block">
 | 
			
		||||
                        <label>
 | 
			
		||||
                            <input type="radio" ng-model="model.interval" name="BillingInterval" value="year">
 | 
			
		||||
                            Annually
 | 
			
		||||
                            <span ng-if="plans[model.plan].annualBasePrice">
 | 
			
		||||
                                Base price:
 | 
			
		||||
                                {{plans[model.plan].basePrice | currency:"$":2}} ×12 mo. =
 | 
			
		||||
                                {{plans[model.plan].annualBasePrice | currency:"$":2}} /year
 | 
			
		||||
                            </span>
 | 
			
		||||
                            <span>
 | 
			
		||||
                                <span ng-if="plans[model.plan].baseSeats">Additional users:</span>
 | 
			
		||||
                                <span ng-if="!plans[model.plan].baseSeats">Users:</span>
 | 
			
		||||
                                {{model.additionalSeats || 0}} ×{{plans[model.plan].seatPrice | currency:"$":2}}
 | 
			
		||||
                                ×12 mo. =
 | 
			
		||||
                                {{((model.additionalSeats || 0) * plans[model.plan].annualSeatPrice) | currency:"$":2}} /year
 | 
			
		||||
                            </span>
 | 
			
		||||
                            <span>
 | 
			
		||||
                                Additional storage:
 | 
			
		||||
                                {{model.additionalStorageGb || 0}} GB × {{storageGb.price | currency:"$":2}}
 | 
			
		||||
                                ×12 mo. =
 | 
			
		||||
                                {{(model.additionalStorageGb || 0) * storageGb.yearlyPrice | currency:"$":2}} /year
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </label>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="radio radio-block" ng-if="model.plan !== 'families'">
 | 
			
		||||
                        <label>
 | 
			
		||||
                            <input type="radio" ng-model="model.interval" name="BillingInterval" value="month">
 | 
			
		||||
                            Monthly
 | 
			
		||||
                            <span ng-if="plans[model.plan].monthlyBasePrice">
 | 
			
		||||
                                Base price:
 | 
			
		||||
                                {{plans[model.plan].monthlyBasePrice | currency:"$":2}} /month
 | 
			
		||||
                            </span>
 | 
			
		||||
                            <span>
 | 
			
		||||
                                <span ng-if="plans[model.plan].baseSeats">Additional users:</span>
 | 
			
		||||
                                <span ng-if="!plans[model.plan].baseSeats">Users:</span>
 | 
			
		||||
                                {{model.additionalSeats || 0}}
 | 
			
		||||
                                ×{{plans[model.plan].monthlySeatPrice | currency:"$":2}} =
 | 
			
		||||
                                {{((model.additionalSeats || 0) * plans[model.plan].monthlySeatPrice) | currency:"$":2}} /month
 | 
			
		||||
                            </span>
 | 
			
		||||
                            <span>
 | 
			
		||||
                                Additional storage:
 | 
			
		||||
                                {{model.additionalStorageGb || 0}} GB × {{storageGb.monthlyPrice | currency:"$":2}} =
 | 
			
		||||
                                {{(model.additionalStorageGb || 0) * storageGb.monthlyPrice | currency:"$":2}} /month
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </label>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-footer">
 | 
			
		||||
                    <h4>
 | 
			
		||||
                        <b>Total:</b>
 | 
			
		||||
                        {{totalPrice() | currency:"USD $":2}} /{{model.interval}}
 | 
			
		||||
                    </h4>
 | 
			
		||||
                    Your plan comes with a free 7 day trial. Your card will not be charged until the trial has ended.
 | 
			
		||||
                    You may cancel at any time.
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box box-default" ng-if="!plans[model.plan].noPayment">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">Payment Information</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <label class="radio-inline radio-lg radio-boxed">
 | 
			
		||||
                        <input type="radio" name="PaymentMethod" value="card" ng-model="paymentMethod"
 | 
			
		||||
                               ng-change="changePaymentMethod('card')">
 | 
			
		||||
                        <i class="fa fa-fw fa-credit-card"></i> Credit Card
 | 
			
		||||
                    </label>
 | 
			
		||||
                    <label class="radio-inline radio-lg radio-boxed">
 | 
			
		||||
                        <input type="radio" name="PaymentMethod" value="bank" ng-model="paymentMethod"
 | 
			
		||||
                               ng-change="changePaymentMethod('bank')">
 | 
			
		||||
                        <i class="fa fa-fw fa-bank"></i> Bank<span class="hidden-xs"> Account (ACH)</span>
 | 
			
		||||
                    </label>
 | 
			
		||||
                    <hr />
 | 
			
		||||
                    <div ng-if="paymentMethod === 'bank'">
 | 
			
		||||
                        <div class="callout callout-warning">
 | 
			
		||||
                            <h4><i class="fa fa-warning"></i> You must verify your bank account</h4>
 | 
			
		||||
                            <p>
 | 
			
		||||
                                Payment with a bank account is <u>only available to customers in the United States</u>.
 | 
			
		||||
                                You will be required to verify your bank account. We will make two micro-deposits within the next
 | 
			
		||||
                                1-2 business days. Enter these amounts in the organization's billing area to verify the bank account.
 | 
			
		||||
                                Failure to verify the bank account will result in a missed payment and your organization being
 | 
			
		||||
                                disabled.
 | 
			
		||||
                            </p>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-lg-5 col-sm-6">
 | 
			
		||||
                                <div class="form-group">
 | 
			
		||||
                                    <label for="routing_number">Routing Number</label>
 | 
			
		||||
                                    <input type="text" id="routing_number" name="routing_number"
 | 
			
		||||
                                           ng-model="model.bank.routing_number" class="form-control" required />
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-lg-5 col-sm-6">
 | 
			
		||||
                                <div class="form-group">
 | 
			
		||||
                                    <label for="account_number">Account Number</label>
 | 
			
		||||
                                    <input type="text" id="account_number" name="account_number"
 | 
			
		||||
                                           ng-model="model.bank.account_number" class="form-control" required />
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-lg-5 col-sm-6">
 | 
			
		||||
                                <div class="form-group">
 | 
			
		||||
                                    <label for="account_holder_name">Account Holder Name</label>
 | 
			
		||||
                                    <input type="text" id="account_holder_name" name="account_holder_name"
 | 
			
		||||
                                           ng-model="model.bank.account_holder_name" class="form-control" required />
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-lg-5 col-sm-6">
 | 
			
		||||
                                <div class="form-group">
 | 
			
		||||
                                    <label for="account_holder_type">Account Type</label>
 | 
			
		||||
                                    <select id="account_holder_type" class="form-control" name="account_holder_type"
 | 
			
		||||
                                            ng-model="model.bank.account_holder_type" required>
 | 
			
		||||
                                        <option value="">-- Select --</option>
 | 
			
		||||
                                        <option value="company">Company (Business)</option>
 | 
			
		||||
                                        <option value="individual">Individual (Personal)</option>
 | 
			
		||||
                                    </select>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div ng-if="paymentMethod === 'card'">
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-md-5">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="card_number">Card Number</label>
 | 
			
		||||
                                    <input type="text" id="card_number" name="card_number" ng-model="model.card.number"
 | 
			
		||||
                                           class="form-control" cc-number required api-field autocomplete="cc-number" />
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-md-7">
 | 
			
		||||
                                <br class="hidden-sm hidden-xs" />
 | 
			
		||||
                                <ul class="list-inline" style="margin: 0;">
 | 
			
		||||
                                    <li><div class="cc visa"></div></li>
 | 
			
		||||
                                    <li><div class="cc mastercard"></div></li>
 | 
			
		||||
                                    <li><div class="cc amex"></div></li>
 | 
			
		||||
                                    <li><div class="cc discover"></div></li>
 | 
			
		||||
                                    <li><div class="cc diners"></div></li>
 | 
			
		||||
                                    <li><div class="cc jcb"></div></li>
 | 
			
		||||
                                </ul>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="exp_month">Expiration Month</label>
 | 
			
		||||
                                    <select id="exp_month" class="form-control" ng-model="model.card.exp_month" required cc-exp-month
 | 
			
		||||
                                            name="exp_month" api-field autocomplete="cc-exp-month">
 | 
			
		||||
                                        <option value="">-- Select --</option>
 | 
			
		||||
                                        <option value="01">01 - January</option>
 | 
			
		||||
                                        <option value="02">02 - February</option>
 | 
			
		||||
                                        <option value="03">03 - March</option>
 | 
			
		||||
                                        <option value="04">04 - April</option>
 | 
			
		||||
                                        <option value="05">05 - May</option>
 | 
			
		||||
                                        <option value="06">06 - June</option>
 | 
			
		||||
                                        <option value="07">07 - July</option>
 | 
			
		||||
                                        <option value="08">08 - August</option>
 | 
			
		||||
                                        <option value="09">09 - September</option>
 | 
			
		||||
                                        <option value="10">10 - October</option>
 | 
			
		||||
                                        <option value="11">11 - November</option>
 | 
			
		||||
                                        <option value="12">12 - December</option>
 | 
			
		||||
                                    </select>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="exp_year">Expiration Year</label>
 | 
			
		||||
                                    <select id="exp_year" class="form-control" ng-model="model.card.exp_year" required cc-exp-year
 | 
			
		||||
                                            name="exp_year" api-field autocomplete="cc-exp-year">
 | 
			
		||||
                                        <option value="">-- Select --</option>
 | 
			
		||||
                                        <option value="17">2017</option>
 | 
			
		||||
                                        <option value="18">2018</option>
 | 
			
		||||
                                        <option value="19">2019</option>
 | 
			
		||||
                                        <option value="20">2020</option>
 | 
			
		||||
                                        <option value="21">2021</option>
 | 
			
		||||
                                        <option value="22">2022</option>
 | 
			
		||||
                                        <option value="23">2023</option>
 | 
			
		||||
                                        <option value="24">2024</option>
 | 
			
		||||
                                        <option value="25">2025</option>
 | 
			
		||||
                                        <option value="26">2026</option>
 | 
			
		||||
                                    </select>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="cvc">
 | 
			
		||||
                                        CVC
 | 
			
		||||
                                        <a href="https://www.cvvnumber.com/cvv.html" target="_blank" title="What is this?"
 | 
			
		||||
                                           rel="noopener noreferrer">
 | 
			
		||||
                                            <i class="fa fa-question-circle"></i>
 | 
			
		||||
                                        </a>
 | 
			
		||||
                                    </label>
 | 
			
		||||
                                    <input type="text" id="cvc" ng-model="model.card.cvc" class="form-control" name="cvc"
 | 
			
		||||
                                           cc-type="number.$ccType" cc-cvc required api-field autocomplete="cc-csc" />
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-sm-6">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="address_country">Country</label>
 | 
			
		||||
                                    <select id="address_country" class="form-control" ng-model="model.card.address_country"
 | 
			
		||||
                                            required name="address_country" api-field autocomplete="country">
 | 
			
		||||
                                        <option value="">-- Select --</option>
 | 
			
		||||
                                        <option value="US">United States</option>
 | 
			
		||||
                                        <option value="CN">China</option>
 | 
			
		||||
                                        <option value="FR">France</option>
 | 
			
		||||
                                        <option value="DE">Germany</option>
 | 
			
		||||
                                        <option value="CA">Canada</option>
 | 
			
		||||
                                        <option value="GB">United Kingdom</option>
 | 
			
		||||
                                        <option value="AU">Australia</option>
 | 
			
		||||
                                        <option value="IN">India</option>
 | 
			
		||||
                                        <option value="-" disabled></option>
 | 
			
		||||
                                        <option value="AF">Afghanistan</option>
 | 
			
		||||
                                        <option value="AX">Åland Islands</option>
 | 
			
		||||
                                        <option value="AL">Albania</option>
 | 
			
		||||
                                        <option value="DZ">Algeria</option>
 | 
			
		||||
                                        <option value="AS">American Samoa</option>
 | 
			
		||||
                                        <option value="AD">Andorra</option>
 | 
			
		||||
                                        <option value="AO">Angola</option>
 | 
			
		||||
                                        <option value="AI">Anguilla</option>
 | 
			
		||||
                                        <option value="AQ">Antarctica</option>
 | 
			
		||||
                                        <option value="AG">Antigua and Barbuda</option>
 | 
			
		||||
                                        <option value="AR">Argentina</option>
 | 
			
		||||
                                        <option value="AM">Armenia</option>
 | 
			
		||||
                                        <option value="AW">Aruba</option>
 | 
			
		||||
                                        <option value="AT">Austria</option>
 | 
			
		||||
                                        <option value="AZ">Azerbaijan</option>
 | 
			
		||||
                                        <option value="BS">Bahamas</option>
 | 
			
		||||
                                        <option value="BH">Bahrain</option>
 | 
			
		||||
                                        <option value="BD">Bangladesh</option>
 | 
			
		||||
                                        <option value="BB">Barbados</option>
 | 
			
		||||
                                        <option value="BY">Belarus</option>
 | 
			
		||||
                                        <option value="BE">Belgium</option>
 | 
			
		||||
                                        <option value="BZ">Belize</option>
 | 
			
		||||
                                        <option value="BJ">Benin</option>
 | 
			
		||||
                                        <option value="BM">Bermuda</option>
 | 
			
		||||
                                        <option value="BT">Bhutan</option>
 | 
			
		||||
                                        <option value="BO">Bolivia, Plurinational State of</option>
 | 
			
		||||
                                        <option value="BQ">Bonaire, Sint Eustatius and Saba</option>
 | 
			
		||||
                                        <option value="BA">Bosnia and Herzegovina</option>
 | 
			
		||||
                                        <option value="BW">Botswana</option>
 | 
			
		||||
                                        <option value="BV">Bouvet Island</option>
 | 
			
		||||
                                        <option value="BR">Brazil</option>
 | 
			
		||||
                                        <option value="IO">British Indian Ocean Territory</option>
 | 
			
		||||
                                        <option value="BN">Brunei Darussalam</option>
 | 
			
		||||
                                        <option value="BG">Bulgaria</option>
 | 
			
		||||
                                        <option value="BF">Burkina Faso</option>
 | 
			
		||||
                                        <option value="BI">Burundi</option>
 | 
			
		||||
                                        <option value="KH">Cambodia</option>
 | 
			
		||||
                                        <option value="CM">Cameroon</option>
 | 
			
		||||
                                        <option value="CV">Cape Verde</option>
 | 
			
		||||
                                        <option value="KY">Cayman Islands</option>
 | 
			
		||||
                                        <option value="CF">Central African Republic</option>
 | 
			
		||||
                                        <option value="TD">Chad</option>
 | 
			
		||||
                                        <option value="CL">Chile</option>
 | 
			
		||||
                                        <option value="CX">Christmas Island</option>
 | 
			
		||||
                                        <option value="CC">Cocos (Keeling) Islands</option>
 | 
			
		||||
                                        <option value="CO">Colombia</option>
 | 
			
		||||
                                        <option value="KM">Comoros</option>
 | 
			
		||||
                                        <option value="CG">Congo</option>
 | 
			
		||||
                                        <option value="CD">Congo, the Democratic Republic of the</option>
 | 
			
		||||
                                        <option value="CK">Cook Islands</option>
 | 
			
		||||
                                        <option value="CR">Costa Rica</option>
 | 
			
		||||
                                        <option value="CI">Côte d'Ivoire</option>
 | 
			
		||||
                                        <option value="HR">Croatia</option>
 | 
			
		||||
                                        <option value="CU">Cuba</option>
 | 
			
		||||
                                        <option value="CW">Curaçao</option>
 | 
			
		||||
                                        <option value="CY">Cyprus</option>
 | 
			
		||||
                                        <option value="CZ">Czech Republic</option>
 | 
			
		||||
                                        <option value="DK">Denmark</option>
 | 
			
		||||
                                        <option value="DJ">Djibouti</option>
 | 
			
		||||
                                        <option value="DM">Dominica</option>
 | 
			
		||||
                                        <option value="DO">Dominican Republic</option>
 | 
			
		||||
                                        <option value="EC">Ecuador</option>
 | 
			
		||||
                                        <option value="EG">Egypt</option>
 | 
			
		||||
                                        <option value="SV">El Salvador</option>
 | 
			
		||||
                                        <option value="GQ">Equatorial Guinea</option>
 | 
			
		||||
                                        <option value="ER">Eritrea</option>
 | 
			
		||||
                                        <option value="EE">Estonia</option>
 | 
			
		||||
                                        <option value="ET">Ethiopia</option>
 | 
			
		||||
                                        <option value="FK">Falkland Islands (Malvinas)</option>
 | 
			
		||||
                                        <option value="FO">Faroe Islands</option>
 | 
			
		||||
                                        <option value="FJ">Fiji</option>
 | 
			
		||||
                                        <option value="FI">Finland</option>
 | 
			
		||||
                                        <option value="GF">French Guiana</option>
 | 
			
		||||
                                        <option value="PF">French Polynesia</option>
 | 
			
		||||
                                        <option value="TF">French Southern Territories</option>
 | 
			
		||||
                                        <option value="GA">Gabon</option>
 | 
			
		||||
                                        <option value="GM">Gambia</option>
 | 
			
		||||
                                        <option value="GE">Georgia</option>
 | 
			
		||||
                                        <option value="GH">Ghana</option>
 | 
			
		||||
                                        <option value="GI">Gibraltar</option>
 | 
			
		||||
                                        <option value="GR">Greece</option>
 | 
			
		||||
                                        <option value="GL">Greenland</option>
 | 
			
		||||
                                        <option value="GD">Grenada</option>
 | 
			
		||||
                                        <option value="GP">Guadeloupe</option>
 | 
			
		||||
                                        <option value="GU">Guam</option>
 | 
			
		||||
                                        <option value="GT">Guatemala</option>
 | 
			
		||||
                                        <option value="GG">Guernsey</option>
 | 
			
		||||
                                        <option value="GN">Guinea</option>
 | 
			
		||||
                                        <option value="GW">Guinea-Bissau</option>
 | 
			
		||||
                                        <option value="GY">Guyana</option>
 | 
			
		||||
                                        <option value="HT">Haiti</option>
 | 
			
		||||
                                        <option value="HM">Heard Island and McDonald Islands</option>
 | 
			
		||||
                                        <option value="VA">Holy See (Vatican City State)</option>
 | 
			
		||||
                                        <option value="HN">Honduras</option>
 | 
			
		||||
                                        <option value="HK">Hong Kong</option>
 | 
			
		||||
                                        <option value="HU">Hungary</option>
 | 
			
		||||
                                        <option value="IS">Iceland</option>
 | 
			
		||||
                                        <option value="ID">Indonesia</option>
 | 
			
		||||
                                        <option value="IR">Iran, Islamic Republic of</option>
 | 
			
		||||
                                        <option value="IQ">Iraq</option>
 | 
			
		||||
                                        <option value="IE">Ireland</option>
 | 
			
		||||
                                        <option value="IM">Isle of Man</option>
 | 
			
		||||
                                        <option value="IL">Israel</option>
 | 
			
		||||
                                        <option value="IT">Italy</option>
 | 
			
		||||
                                        <option value="JM">Jamaica</option>
 | 
			
		||||
                                        <option value="JP">Japan</option>
 | 
			
		||||
                                        <option value="JE">Jersey</option>
 | 
			
		||||
                                        <option value="JO">Jordan</option>
 | 
			
		||||
                                        <option value="KZ">Kazakhstan</option>
 | 
			
		||||
                                        <option value="KE">Kenya</option>
 | 
			
		||||
                                        <option value="KI">Kiribati</option>
 | 
			
		||||
                                        <option value="KP">Korea, Democratic People's Republic of</option>
 | 
			
		||||
                                        <option value="KR">Korea, Republic of</option>
 | 
			
		||||
                                        <option value="KW">Kuwait</option>
 | 
			
		||||
                                        <option value="KG">Kyrgyzstan</option>
 | 
			
		||||
                                        <option value="LA">Lao People's Democratic Republic</option>
 | 
			
		||||
                                        <option value="LV">Latvia</option>
 | 
			
		||||
                                        <option value="LB">Lebanon</option>
 | 
			
		||||
                                        <option value="LS">Lesotho</option>
 | 
			
		||||
                                        <option value="LR">Liberia</option>
 | 
			
		||||
                                        <option value="LY">Libya</option>
 | 
			
		||||
                                        <option value="LI">Liechtenstein</option>
 | 
			
		||||
                                        <option value="LT">Lithuania</option>
 | 
			
		||||
                                        <option value="LU">Luxembourg</option>
 | 
			
		||||
                                        <option value="MO">Macao</option>
 | 
			
		||||
                                        <option value="MK">Macedonia, the former Yugoslav Republic of</option>
 | 
			
		||||
                                        <option value="MG">Madagascar</option>
 | 
			
		||||
                                        <option value="MW">Malawi</option>
 | 
			
		||||
                                        <option value="MY">Malaysia</option>
 | 
			
		||||
                                        <option value="MV">Maldives</option>
 | 
			
		||||
                                        <option value="ML">Mali</option>
 | 
			
		||||
                                        <option value="MT">Malta</option>
 | 
			
		||||
                                        <option value="MH">Marshall Islands</option>
 | 
			
		||||
                                        <option value="MQ">Martinique</option>
 | 
			
		||||
                                        <option value="MR">Mauritania</option>
 | 
			
		||||
                                        <option value="MU">Mauritius</option>
 | 
			
		||||
                                        <option value="YT">Mayotte</option>
 | 
			
		||||
                                        <option value="MX">Mexico</option>
 | 
			
		||||
                                        <option value="FM">Micronesia, Federated States of</option>
 | 
			
		||||
                                        <option value="MD">Moldova, Republic of</option>
 | 
			
		||||
                                        <option value="MC">Monaco</option>
 | 
			
		||||
                                        <option value="MN">Mongolia</option>
 | 
			
		||||
                                        <option value="ME">Montenegro</option>
 | 
			
		||||
                                        <option value="MS">Montserrat</option>
 | 
			
		||||
                                        <option value="MA">Morocco</option>
 | 
			
		||||
                                        <option value="MZ">Mozambique</option>
 | 
			
		||||
                                        <option value="MM">Myanmar</option>
 | 
			
		||||
                                        <option value="NA">Namibia</option>
 | 
			
		||||
                                        <option value="NR">Nauru</option>
 | 
			
		||||
                                        <option value="NP">Nepal</option>
 | 
			
		||||
                                        <option value="NL">Netherlands</option>
 | 
			
		||||
                                        <option value="NC">New Caledonia</option>
 | 
			
		||||
                                        <option value="NZ">New Zealand</option>
 | 
			
		||||
                                        <option value="NI">Nicaragua</option>
 | 
			
		||||
                                        <option value="NE">Niger</option>
 | 
			
		||||
                                        <option value="NG">Nigeria</option>
 | 
			
		||||
                                        <option value="NU">Niue</option>
 | 
			
		||||
                                        <option value="NF">Norfolk Island</option>
 | 
			
		||||
                                        <option value="MP">Northern Mariana Islands</option>
 | 
			
		||||
                                        <option value="NO">Norway</option>
 | 
			
		||||
                                        <option value="OM">Oman</option>
 | 
			
		||||
                                        <option value="PK">Pakistan</option>
 | 
			
		||||
                                        <option value="PW">Palau</option>
 | 
			
		||||
                                        <option value="PS">Palestinian Territory, Occupied</option>
 | 
			
		||||
                                        <option value="PA">Panama</option>
 | 
			
		||||
                                        <option value="PG">Papua New Guinea</option>
 | 
			
		||||
                                        <option value="PY">Paraguay</option>
 | 
			
		||||
                                        <option value="PE">Peru</option>
 | 
			
		||||
                                        <option value="PH">Philippines</option>
 | 
			
		||||
                                        <option value="PN">Pitcairn</option>
 | 
			
		||||
                                        <option value="PL">Poland</option>
 | 
			
		||||
                                        <option value="PT">Portugal</option>
 | 
			
		||||
                                        <option value="PR">Puerto Rico</option>
 | 
			
		||||
                                        <option value="QA">Qatar</option>
 | 
			
		||||
                                        <option value="RE">Réunion</option>
 | 
			
		||||
                                        <option value="RO">Romania</option>
 | 
			
		||||
                                        <option value="RU">Russian Federation</option>
 | 
			
		||||
                                        <option value="RW">Rwanda</option>
 | 
			
		||||
                                        <option value="BL">Saint Barthélemy</option>
 | 
			
		||||
                                        <option value="SH">Saint Helena, Ascension and Tristan da Cunha</option>
 | 
			
		||||
                                        <option value="KN">Saint Kitts and Nevis</option>
 | 
			
		||||
                                        <option value="LC">Saint Lucia</option>
 | 
			
		||||
                                        <option value="MF">Saint Martin (French part)</option>
 | 
			
		||||
                                        <option value="PM">Saint Pierre and Miquelon</option>
 | 
			
		||||
                                        <option value="VC">Saint Vincent and the Grenadines</option>
 | 
			
		||||
                                        <option value="WS">Samoa</option>
 | 
			
		||||
                                        <option value="SM">San Marino</option>
 | 
			
		||||
                                        <option value="ST">Sao Tome and Principe</option>
 | 
			
		||||
                                        <option value="SA">Saudi Arabia</option>
 | 
			
		||||
                                        <option value="SN">Senegal</option>
 | 
			
		||||
                                        <option value="RS">Serbia</option>
 | 
			
		||||
                                        <option value="SC">Seychelles</option>
 | 
			
		||||
                                        <option value="SL">Sierra Leone</option>
 | 
			
		||||
                                        <option value="SG">Singapore</option>
 | 
			
		||||
                                        <option value="SX">Sint Maarten (Dutch part)</option>
 | 
			
		||||
                                        <option value="SK">Slovakia</option>
 | 
			
		||||
                                        <option value="SI">Slovenia</option>
 | 
			
		||||
                                        <option value="SB">Solomon Islands</option>
 | 
			
		||||
                                        <option value="SO">Somalia</option>
 | 
			
		||||
                                        <option value="ZA">South Africa</option>
 | 
			
		||||
                                        <option value="GS">South Georgia and the South Sandwich Islands</option>
 | 
			
		||||
                                        <option value="SS">South Sudan</option>
 | 
			
		||||
                                        <option value="ES">Spain</option>
 | 
			
		||||
                                        <option value="LK">Sri Lanka</option>
 | 
			
		||||
                                        <option value="SD">Sudan</option>
 | 
			
		||||
                                        <option value="SR">Suriname</option>
 | 
			
		||||
                                        <option value="SJ">Svalbard and Jan Mayen</option>
 | 
			
		||||
                                        <option value="SZ">Swaziland</option>
 | 
			
		||||
                                        <option value="SE">Sweden</option>
 | 
			
		||||
                                        <option value="CH">Switzerland</option>
 | 
			
		||||
                                        <option value="SY">Syrian Arab Republic</option>
 | 
			
		||||
                                        <option value="TW">Taiwan, Province of China</option>
 | 
			
		||||
                                        <option value="TJ">Tajikistan</option>
 | 
			
		||||
                                        <option value="TZ">Tanzania, United Republic of</option>
 | 
			
		||||
                                        <option value="TH">Thailand</option>
 | 
			
		||||
                                        <option value="TL">Timor-Leste</option>
 | 
			
		||||
                                        <option value="TG">Togo</option>
 | 
			
		||||
                                        <option value="TK">Tokelau</option>
 | 
			
		||||
                                        <option value="TO">Tonga</option>
 | 
			
		||||
                                        <option value="TT">Trinidad and Tobago</option>
 | 
			
		||||
                                        <option value="TN">Tunisia</option>
 | 
			
		||||
                                        <option value="TR">Turkey</option>
 | 
			
		||||
                                        <option value="TM">Turkmenistan</option>
 | 
			
		||||
                                        <option value="TC">Turks and Caicos Islands</option>
 | 
			
		||||
                                        <option value="TV">Tuvalu</option>
 | 
			
		||||
                                        <option value="UG">Uganda</option>
 | 
			
		||||
                                        <option value="UA">Ukraine</option>
 | 
			
		||||
                                        <option value="AE">United Arab Emirates</option>
 | 
			
		||||
                                        <option value="UM">United States Minor Outlying Islands</option>
 | 
			
		||||
                                        <option value="UY">Uruguay</option>
 | 
			
		||||
                                        <option value="UZ">Uzbekistan</option>
 | 
			
		||||
                                        <option value="VU">Vanuatu</option>
 | 
			
		||||
                                        <option value="VE">Venezuela, Bolivarian Republic of</option>
 | 
			
		||||
                                        <option value="VN">Viet Nam</option>
 | 
			
		||||
                                        <option value="VG">Virgin Islands, British</option>
 | 
			
		||||
                                        <option value="VI">Virgin Islands, U.S.</option>
 | 
			
		||||
                                        <option value="WF">Wallis and Futuna</option>
 | 
			
		||||
                                        <option value="EH">Western Sahara</option>
 | 
			
		||||
                                        <option value="YE">Yemen</option>
 | 
			
		||||
                                        <option value="ZM">Zambia</option>
 | 
			
		||||
                                        <option value="ZW">Zimbabwe</option>
 | 
			
		||||
                                    </select>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="address_zip"
 | 
			
		||||
                                           ng-bind="model.card.address_country === 'US' ? 'Zip Code' : 'Postal Code'"></label>
 | 
			
		||||
                                    <input type="text" id="address_zip" ng-model="model.card.address_zip"
 | 
			
		||||
                                           class="form-control" required name="address_zip" api-field autocomplete="postal-code" />
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-footer">
 | 
			
		||||
                    <button type="submit" class="btn btn-primary btn-flat" ng-disabled="createOrgForm.$loading">
 | 
			
		||||
                        <i class="fa fa-refresh fa-spin loading-icon" ng-show="createOrgForm.$loading"></i>Submit
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </form>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,30 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title" id="deleteAccountModelLabel"><i class="fa fa-trash"></i> Delete Account</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="deleteAccountForm" ng-submit="deleteAccountForm.$valid && submit(model)" api-form="submitPromise">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Continue below to delete your account and all associated data.</p>
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning</h4>
 | 
			
		||||
            Deleting your account is permanent. It cannot be undone.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="deleteAccountForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in deleteAccountForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="model.masterPassword" class="form-control"
 | 
			
		||||
                   required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="deleteAccountForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="deleteAccountForm.$loading"></i>Delete
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,117 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>Domain Rules</h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <p>
 | 
			
		||||
        If you have the same login across multiple different website domains, you can mark the website as "equivalent".
 | 
			
		||||
        "Global" domains are ones already created for you by Bitwarden.
 | 
			
		||||
    </p>
 | 
			
		||||
    <form name="customForm" ng-submit="customForm.$valid && saveCustom()" api-form="customPromise" autocomplete="off">
 | 
			
		||||
        <div class="box box-default">
 | 
			
		||||
            <div class="box-header with-border">
 | 
			
		||||
                <h3 class="box-title">Custom <span class="hidden-xs">Equivalent Domains</span></h3>
 | 
			
		||||
                <div class="box-tools">
 | 
			
		||||
                    <button type="button" class="btn btn-primary btn-sm btn-flat" ng-click="addEdit(null)">
 | 
			
		||||
                        <i class="fa fa-fw fa-plus-circle"></i> New Domain
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-body no-padding">
 | 
			
		||||
                <div class="table-responsive">
 | 
			
		||||
                    <table class="table table-striped table-hover table-vmiddle">
 | 
			
		||||
                        <tbody ng-if="equivalentDomains.length">
 | 
			
		||||
                            <tr ng-repeat="customDomain in equivalentDomains track by $index">
 | 
			
		||||
                                <td style="width: 70px;">
 | 
			
		||||
                                    <div class="btn-group" data-append-to="body">
 | 
			
		||||
                                        <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                            <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                                        </button>
 | 
			
		||||
                                        <ul class="dropdown-menu">
 | 
			
		||||
                                            <li>
 | 
			
		||||
                                                <a href="#" stop-click ng-click="addEdit($index)">
 | 
			
		||||
                                                    <i class="fa fa-fw fa-pencil"></i> Edit
 | 
			
		||||
                                                </a>
 | 
			
		||||
                                            </li>
 | 
			
		||||
                                            <li>
 | 
			
		||||
                                                <a href="#" stop-click ng-click="delete($index)" class="text-red">
 | 
			
		||||
                                                    <i class="fa fa-fw fa-trash"></i> Delete
 | 
			
		||||
                                                </a>
 | 
			
		||||
                                            </li>
 | 
			
		||||
                                        </ul>
 | 
			
		||||
                                    </div>
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td>{{customDomain}}</td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                        <tbody ng-if="!equivalentDomains.length">
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <td>No domains to list.</td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                    </table>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-footer">
 | 
			
		||||
                <button type="submit" class="btn btn-primary btn-flat" ng-disabled="customForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon" ng-show="customForm.$loading"></i>Save
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </form>
 | 
			
		||||
 | 
			
		||||
    <form name="globalForm" ng-submit="globalForm.$valid && saveGlobal()" api-form="globalPromise" autocomplete="off">
 | 
			
		||||
        <div class="box box-default">
 | 
			
		||||
            <div class="box-header with-border">
 | 
			
		||||
                <h3 class="box-title">Global <span class="hidden-xs">Equivalent Domains</span></h3>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-body no-padding">
 | 
			
		||||
                <div class="table-responsive">
 | 
			
		||||
                    <table class="table table-striped table-hover table-vmiddle">
 | 
			
		||||
                        <tbody ng-if="globalEquivalentDomains.length">
 | 
			
		||||
                            <tr ng-repeat="globalDomain in globalEquivalentDomains">
 | 
			
		||||
                                <td style="width: 70px;">
 | 
			
		||||
                                    <div class="btn-group" data-append-to="body">
 | 
			
		||||
                                        <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                            <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                                        </button>
 | 
			
		||||
                                        <ul class="dropdown-menu">
 | 
			
		||||
                                            <li>
 | 
			
		||||
                                                <a href="#" stop-click ng-if="!globalDomain.excluded" 
 | 
			
		||||
                                                   ng-click="toggleExclude(globalDomain)">
 | 
			
		||||
                                                    <i class="fa fa-fw fa-remove"></i> Exclude
 | 
			
		||||
                                                </a>
 | 
			
		||||
                                            </li>
 | 
			
		||||
                                            <li>
 | 
			
		||||
                                                <a href="#" stop-click ng-if="globalDomain.excluded"
 | 
			
		||||
                                                   ng-click="toggleExclude(globalDomain)">
 | 
			
		||||
                                                    <i class="fa fa-fw fa-plus"></i> Include
 | 
			
		||||
                                                </a>
 | 
			
		||||
                                            </li>
 | 
			
		||||
                                            <li>
 | 
			
		||||
                                                <a href="#" stop-click ng-click="customize(globalDomain)">
 | 
			
		||||
                                                    <i class="fa fa-fw fa-cut"></i> Customize
 | 
			
		||||
                                                </a>
 | 
			
		||||
                                            </li>
 | 
			
		||||
                                        </ul>
 | 
			
		||||
                                    </div>
 | 
			
		||||
                                </td>
 | 
			
		||||
                                <td ng-class="{strike: globalDomain.excluded}">{{::globalDomain.domains}}</td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                        <tbody ng-if="!globalEquivalentDomains.length">
 | 
			
		||||
                            <tr>
 | 
			
		||||
                                <td>No domains to list.</td>
 | 
			
		||||
                            </tr>
 | 
			
		||||
                        </tbody>
 | 
			
		||||
                    </table>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-footer">
 | 
			
		||||
                <button type="submit" class="btn btn-primary btn-flat" ng-disabled="globalForm.$loading">
 | 
			
		||||
                    <i class="fa fa-refresh fa-spin loading-icon" ng-show="globalForm.$loading"></i>Save
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </form>
 | 
			
		||||
</section>
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -1,487 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>Premium<span class="hidden-xs"> Membership</span><small>get started today!</small></h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <form name="form" ng-submit="form.$valid && submit(model, form)" api-form="submitPromise">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box box-default">
 | 
			
		||||
            <div class="box-body">
 | 
			
		||||
                <div class="row">
 | 
			
		||||
                    <div class="col-sm-8">
 | 
			
		||||
                        <p>Sign up for a premium membership and get:</p>
 | 
			
		||||
                        <ul class="fa-ul">
 | 
			
		||||
                            <li>
 | 
			
		||||
                                <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
                                1 GB of encrypted file storage.
 | 
			
		||||
                            </li>
 | 
			
		||||
                            <li>
 | 
			
		||||
                                <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
                                Additional two-step login options such as YubiKey, FIDO U2F, and Duo.
 | 
			
		||||
                            </li>
 | 
			
		||||
                            <li>
 | 
			
		||||
                                <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
                                TOTP verification code (2FA) generator for logins in your vault.
 | 
			
		||||
                            </li>
 | 
			
		||||
                            <li>
 | 
			
		||||
                                <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
                                Priority customer support.
 | 
			
		||||
                            </li>
 | 
			
		||||
                            <li>
 | 
			
		||||
                                <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
                                All future premium features. More coming soon!
 | 
			
		||||
                            </li>
 | 
			
		||||
                        </ul>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="col-sm-4">
 | 
			
		||||
                        all for just<br />
 | 
			
		||||
                        <span style="font-size: 30px;">{{premiumPrice | currency:"$":0}}</span> /year
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box-footer" ng-if="selfHosted">
 | 
			
		||||
                <a href="https://vault.bitwarden.com/#/?premium=purchase" class="btn btn-primary btn-flat" target="_blank">
 | 
			
		||||
                    Purchase Premium
 | 
			
		||||
                </a>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="selfHosted">
 | 
			
		||||
            <div class="box box-default">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">License</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <p>To upgrade your account to a premium membership you need to upload a valid license file.</p>
 | 
			
		||||
                    <div class="form-group" show-error>
 | 
			
		||||
                        <label for="file" class="sr-only">License</label>
 | 
			
		||||
                        <input type="file" id="file" name="file" accept=".json" />
 | 
			
		||||
                        <p class="help-block">
 | 
			
		||||
                            Your license file will be named something like <code>bitwarden_premium_license.json</code>
 | 
			
		||||
                        </p>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-footer">
 | 
			
		||||
                    <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
                        <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!selfHosted">
 | 
			
		||||
            <div class="box box-default">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">Addons</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <div class="form-group" show-errors style="margin: 0;">
 | 
			
		||||
                        <label for="additionalStorage">Storage</label>
 | 
			
		||||
                        <p>
 | 
			
		||||
                            Your plan comes with 1 GB of encrypted file storage. You can add additional
 | 
			
		||||
                            storage for {{storageGbPrice | currency:"$":0}} per GB /year.
 | 
			
		||||
                        </p>
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-md-4">
 | 
			
		||||
                                <input type="number" id="additionalStorage" name="AdditionalStorageGb"
 | 
			
		||||
                                       ng-model="model.additionalStorageGb" min="0" max="99" step="1" class="form-control"
 | 
			
		||||
                                       placeholder="# of additional GB" api-field />
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box box-default">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">Billing Summary</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    Premium membership:
 | 
			
		||||
                    {{premiumPrice | currency:"$"}}<br />
 | 
			
		||||
                    Additional storage:
 | 
			
		||||
                    {{model.additionalStorageGb || 0}} GB × {{storageGbPrice | currency:"$"}} =
 | 
			
		||||
                    {{(model.additionalStorageGb || 0) * storageGbPrice | currency:"$"}}
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-footer">
 | 
			
		||||
                    <h4>
 | 
			
		||||
                        <b>Total:</b>
 | 
			
		||||
                        {{totalPrice() | currency:"USD $"}} /year
 | 
			
		||||
                    </h4>
 | 
			
		||||
                    Your card will be charged immediately and on a recurring basis each year. You may cancel at any time.
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="box box-default">
 | 
			
		||||
                <div class="box-header with-border">
 | 
			
		||||
                    <h3 class="box-title">Payment Information</h3>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-body">
 | 
			
		||||
                    <label class="radio-inline radio-lg radio-boxed">
 | 
			
		||||
                        <input type="radio" name="PaymentMethod" value="card" ng-model="paymentMethod"
 | 
			
		||||
                               ng-change="changePaymentMethod('card')"><i class="fa fa-fw fa-credit-card"></i> Credit Card
 | 
			
		||||
                    </label>
 | 
			
		||||
                    <label class="radio-inline radio-lg radio-boxed">
 | 
			
		||||
                        <input type="radio" name="PaymentMethod" value="paypal" ng-model="paymentMethod"
 | 
			
		||||
                               ng-change="changePaymentMethod('paypal')"><i class="fa fa-fw fa-paypal"></i> PayPal
 | 
			
		||||
                    </label>
 | 
			
		||||
                    <hr />
 | 
			
		||||
                    <div ng-if="paymentMethod === 'paypal'">
 | 
			
		||||
                        <div id="bt-dropin-container"></div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div ng-if="paymentMethod === 'card'">
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-md-5">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="card_number">Card Number</label>
 | 
			
		||||
                                    <input type="text" id="card_number" name="card_number" ng-model="model.card.number"
 | 
			
		||||
                                           class="form-control" cc-number required api-field />
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-md-7">
 | 
			
		||||
                                <br class="hidden-sm hidden-xs" />
 | 
			
		||||
                                <ul class="list-inline" style="margin: 0;">
 | 
			
		||||
                                    <li><div class="cc visa"></div></li>
 | 
			
		||||
                                    <li><div class="cc mastercard"></div></li>
 | 
			
		||||
                                    <li><div class="cc amex"></div></li>
 | 
			
		||||
                                    <li><div class="cc discover"></div></li>
 | 
			
		||||
                                    <li><div class="cc diners"></div></li>
 | 
			
		||||
                                    <li><div class="cc jcb"></div></li>
 | 
			
		||||
                                </ul>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="exp_month">Expiration Month</label>
 | 
			
		||||
                                    <select id="exp_month" class="form-control" ng-model="model.card.exp_month" required cc-exp-month
 | 
			
		||||
                                            name="exp_month" api-field>
 | 
			
		||||
                                        <option value="">-- Select --</option>
 | 
			
		||||
                                        <option value="01">01 - January</option>
 | 
			
		||||
                                        <option value="02">02 - February</option>
 | 
			
		||||
                                        <option value="03">03 - March</option>
 | 
			
		||||
                                        <option value="04">04 - April</option>
 | 
			
		||||
                                        <option value="05">05 - May</option>
 | 
			
		||||
                                        <option value="06">06 - June</option>
 | 
			
		||||
                                        <option value="07">07 - July</option>
 | 
			
		||||
                                        <option value="08">08 - August</option>
 | 
			
		||||
                                        <option value="09">09 - September</option>
 | 
			
		||||
                                        <option value="10">10 - October</option>
 | 
			
		||||
                                        <option value="11">11 - November</option>
 | 
			
		||||
                                        <option value="12">12 - December</option>
 | 
			
		||||
                                    </select>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="exp_year">Expiration Year</label>
 | 
			
		||||
                                    <select id="exp_year" class="form-control" ng-model="model.card.exp_year" required cc-exp-year
 | 
			
		||||
                                            name="exp_year" api-field>
 | 
			
		||||
                                        <option value="">-- Select --</option>
 | 
			
		||||
                                        <option value="17">2017</option>
 | 
			
		||||
                                        <option value="18">2018</option>
 | 
			
		||||
                                        <option value="19">2019</option>
 | 
			
		||||
                                        <option value="20">2020</option>
 | 
			
		||||
                                        <option value="21">2021</option>
 | 
			
		||||
                                        <option value="22">2022</option>
 | 
			
		||||
                                        <option value="23">2023</option>
 | 
			
		||||
                                        <option value="24">2024</option>
 | 
			
		||||
                                        <option value="25">2025</option>
 | 
			
		||||
                                        <option value="26">2026</option>
 | 
			
		||||
                                    </select>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="cvc">
 | 
			
		||||
                                        CVC
 | 
			
		||||
                                        <a href="https://www.cvvnumber.com/cvv.html" target="_blank" title="What is this?"
 | 
			
		||||
                                           rel="noopener noreferrer">
 | 
			
		||||
                                            <i class="fa fa-question-circle"></i>
 | 
			
		||||
                                        </a>
 | 
			
		||||
                                    </label>
 | 
			
		||||
                                    <input type="text" id="cvc" ng-model="model.card.cvc" class="form-control" name="cvc"
 | 
			
		||||
                                           cc-type="number.$ccType" cc-cvc required api-field />
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div class="row">
 | 
			
		||||
                            <div class="col-sm-6">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="address_country">Country</label>
 | 
			
		||||
                                    <select id="address_country" class="form-control" ng-model="model.card.address_country"
 | 
			
		||||
                                            required name="address_country" api-field>
 | 
			
		||||
                                        <option value="">-- Select --</option>
 | 
			
		||||
                                        <option value="US">United States</option>
 | 
			
		||||
                                        <option value="CN">China</option>
 | 
			
		||||
                                        <option value="FR">France</option>
 | 
			
		||||
                                        <option value="DE">Germany</option>
 | 
			
		||||
                                        <option value="CA">Canada</option>
 | 
			
		||||
                                        <option value="GB">United Kingdom</option>
 | 
			
		||||
                                        <option value="AU">Australia</option>
 | 
			
		||||
                                        <option value="IN">India</option>
 | 
			
		||||
                                        <option value="-" disabled></option>
 | 
			
		||||
                                        <option value="AF">Afghanistan</option>
 | 
			
		||||
                                        <option value="AX">Åland Islands</option>
 | 
			
		||||
                                        <option value="AL">Albania</option>
 | 
			
		||||
                                        <option value="DZ">Algeria</option>
 | 
			
		||||
                                        <option value="AS">American Samoa</option>
 | 
			
		||||
                                        <option value="AD">Andorra</option>
 | 
			
		||||
                                        <option value="AO">Angola</option>
 | 
			
		||||
                                        <option value="AI">Anguilla</option>
 | 
			
		||||
                                        <option value="AQ">Antarctica</option>
 | 
			
		||||
                                        <option value="AG">Antigua and Barbuda</option>
 | 
			
		||||
                                        <option value="AR">Argentina</option>
 | 
			
		||||
                                        <option value="AM">Armenia</option>
 | 
			
		||||
                                        <option value="AW">Aruba</option>
 | 
			
		||||
                                        <option value="AT">Austria</option>
 | 
			
		||||
                                        <option value="AZ">Azerbaijan</option>
 | 
			
		||||
                                        <option value="BS">Bahamas</option>
 | 
			
		||||
                                        <option value="BH">Bahrain</option>
 | 
			
		||||
                                        <option value="BD">Bangladesh</option>
 | 
			
		||||
                                        <option value="BB">Barbados</option>
 | 
			
		||||
                                        <option value="BY">Belarus</option>
 | 
			
		||||
                                        <option value="BE">Belgium</option>
 | 
			
		||||
                                        <option value="BZ">Belize</option>
 | 
			
		||||
                                        <option value="BJ">Benin</option>
 | 
			
		||||
                                        <option value="BM">Bermuda</option>
 | 
			
		||||
                                        <option value="BT">Bhutan</option>
 | 
			
		||||
                                        <option value="BO">Bolivia, Plurinational State of</option>
 | 
			
		||||
                                        <option value="BQ">Bonaire, Sint Eustatius and Saba</option>
 | 
			
		||||
                                        <option value="BA">Bosnia and Herzegovina</option>
 | 
			
		||||
                                        <option value="BW">Botswana</option>
 | 
			
		||||
                                        <option value="BV">Bouvet Island</option>
 | 
			
		||||
                                        <option value="BR">Brazil</option>
 | 
			
		||||
                                        <option value="IO">British Indian Ocean Territory</option>
 | 
			
		||||
                                        <option value="BN">Brunei Darussalam</option>
 | 
			
		||||
                                        <option value="BG">Bulgaria</option>
 | 
			
		||||
                                        <option value="BF">Burkina Faso</option>
 | 
			
		||||
                                        <option value="BI">Burundi</option>
 | 
			
		||||
                                        <option value="KH">Cambodia</option>
 | 
			
		||||
                                        <option value="CM">Cameroon</option>
 | 
			
		||||
                                        <option value="CV">Cape Verde</option>
 | 
			
		||||
                                        <option value="KY">Cayman Islands</option>
 | 
			
		||||
                                        <option value="CF">Central African Republic</option>
 | 
			
		||||
                                        <option value="TD">Chad</option>
 | 
			
		||||
                                        <option value="CL">Chile</option>
 | 
			
		||||
                                        <option value="CX">Christmas Island</option>
 | 
			
		||||
                                        <option value="CC">Cocos (Keeling) Islands</option>
 | 
			
		||||
                                        <option value="CO">Colombia</option>
 | 
			
		||||
                                        <option value="KM">Comoros</option>
 | 
			
		||||
                                        <option value="CG">Congo</option>
 | 
			
		||||
                                        <option value="CD">Congo, the Democratic Republic of the</option>
 | 
			
		||||
                                        <option value="CK">Cook Islands</option>
 | 
			
		||||
                                        <option value="CR">Costa Rica</option>
 | 
			
		||||
                                        <option value="CI">Côte d'Ivoire</option>
 | 
			
		||||
                                        <option value="HR">Croatia</option>
 | 
			
		||||
                                        <option value="CU">Cuba</option>
 | 
			
		||||
                                        <option value="CW">Curaçao</option>
 | 
			
		||||
                                        <option value="CY">Cyprus</option>
 | 
			
		||||
                                        <option value="CZ">Czech Republic</option>
 | 
			
		||||
                                        <option value="DK">Denmark</option>
 | 
			
		||||
                                        <option value="DJ">Djibouti</option>
 | 
			
		||||
                                        <option value="DM">Dominica</option>
 | 
			
		||||
                                        <option value="DO">Dominican Republic</option>
 | 
			
		||||
                                        <option value="EC">Ecuador</option>
 | 
			
		||||
                                        <option value="EG">Egypt</option>
 | 
			
		||||
                                        <option value="SV">El Salvador</option>
 | 
			
		||||
                                        <option value="GQ">Equatorial Guinea</option>
 | 
			
		||||
                                        <option value="ER">Eritrea</option>
 | 
			
		||||
                                        <option value="EE">Estonia</option>
 | 
			
		||||
                                        <option value="ET">Ethiopia</option>
 | 
			
		||||
                                        <option value="FK">Falkland Islands (Malvinas)</option>
 | 
			
		||||
                                        <option value="FO">Faroe Islands</option>
 | 
			
		||||
                                        <option value="FJ">Fiji</option>
 | 
			
		||||
                                        <option value="FI">Finland</option>
 | 
			
		||||
                                        <option value="GF">French Guiana</option>
 | 
			
		||||
                                        <option value="PF">French Polynesia</option>
 | 
			
		||||
                                        <option value="TF">French Southern Territories</option>
 | 
			
		||||
                                        <option value="GA">Gabon</option>
 | 
			
		||||
                                        <option value="GM">Gambia</option>
 | 
			
		||||
                                        <option value="GE">Georgia</option>
 | 
			
		||||
                                        <option value="GH">Ghana</option>
 | 
			
		||||
                                        <option value="GI">Gibraltar</option>
 | 
			
		||||
                                        <option value="GR">Greece</option>
 | 
			
		||||
                                        <option value="GL">Greenland</option>
 | 
			
		||||
                                        <option value="GD">Grenada</option>
 | 
			
		||||
                                        <option value="GP">Guadeloupe</option>
 | 
			
		||||
                                        <option value="GU">Guam</option>
 | 
			
		||||
                                        <option value="GT">Guatemala</option>
 | 
			
		||||
                                        <option value="GG">Guernsey</option>
 | 
			
		||||
                                        <option value="GN">Guinea</option>
 | 
			
		||||
                                        <option value="GW">Guinea-Bissau</option>
 | 
			
		||||
                                        <option value="GY">Guyana</option>
 | 
			
		||||
                                        <option value="HT">Haiti</option>
 | 
			
		||||
                                        <option value="HM">Heard Island and McDonald Islands</option>
 | 
			
		||||
                                        <option value="VA">Holy See (Vatican City State)</option>
 | 
			
		||||
                                        <option value="HN">Honduras</option>
 | 
			
		||||
                                        <option value="HK">Hong Kong</option>
 | 
			
		||||
                                        <option value="HU">Hungary</option>
 | 
			
		||||
                                        <option value="IS">Iceland</option>
 | 
			
		||||
                                        <option value="ID">Indonesia</option>
 | 
			
		||||
                                        <option value="IR">Iran, Islamic Republic of</option>
 | 
			
		||||
                                        <option value="IQ">Iraq</option>
 | 
			
		||||
                                        <option value="IE">Ireland</option>
 | 
			
		||||
                                        <option value="IM">Isle of Man</option>
 | 
			
		||||
                                        <option value="IL">Israel</option>
 | 
			
		||||
                                        <option value="IT">Italy</option>
 | 
			
		||||
                                        <option value="JM">Jamaica</option>
 | 
			
		||||
                                        <option value="JP">Japan</option>
 | 
			
		||||
                                        <option value="JE">Jersey</option>
 | 
			
		||||
                                        <option value="JO">Jordan</option>
 | 
			
		||||
                                        <option value="KZ">Kazakhstan</option>
 | 
			
		||||
                                        <option value="KE">Kenya</option>
 | 
			
		||||
                                        <option value="KI">Kiribati</option>
 | 
			
		||||
                                        <option value="KP">Korea, Democratic People's Republic of</option>
 | 
			
		||||
                                        <option value="KR">Korea, Republic of</option>
 | 
			
		||||
                                        <option value="KW">Kuwait</option>
 | 
			
		||||
                                        <option value="KG">Kyrgyzstan</option>
 | 
			
		||||
                                        <option value="LA">Lao People's Democratic Republic</option>
 | 
			
		||||
                                        <option value="LV">Latvia</option>
 | 
			
		||||
                                        <option value="LB">Lebanon</option>
 | 
			
		||||
                                        <option value="LS">Lesotho</option>
 | 
			
		||||
                                        <option value="LR">Liberia</option>
 | 
			
		||||
                                        <option value="LY">Libya</option>
 | 
			
		||||
                                        <option value="LI">Liechtenstein</option>
 | 
			
		||||
                                        <option value="LT">Lithuania</option>
 | 
			
		||||
                                        <option value="LU">Luxembourg</option>
 | 
			
		||||
                                        <option value="MO">Macao</option>
 | 
			
		||||
                                        <option value="MK">Macedonia, the former Yugoslav Republic of</option>
 | 
			
		||||
                                        <option value="MG">Madagascar</option>
 | 
			
		||||
                                        <option value="MW">Malawi</option>
 | 
			
		||||
                                        <option value="MY">Malaysia</option>
 | 
			
		||||
                                        <option value="MV">Maldives</option>
 | 
			
		||||
                                        <option value="ML">Mali</option>
 | 
			
		||||
                                        <option value="MT">Malta</option>
 | 
			
		||||
                                        <option value="MH">Marshall Islands</option>
 | 
			
		||||
                                        <option value="MQ">Martinique</option>
 | 
			
		||||
                                        <option value="MR">Mauritania</option>
 | 
			
		||||
                                        <option value="MU">Mauritius</option>
 | 
			
		||||
                                        <option value="YT">Mayotte</option>
 | 
			
		||||
                                        <option value="MX">Mexico</option>
 | 
			
		||||
                                        <option value="FM">Micronesia, Federated States of</option>
 | 
			
		||||
                                        <option value="MD">Moldova, Republic of</option>
 | 
			
		||||
                                        <option value="MC">Monaco</option>
 | 
			
		||||
                                        <option value="MN">Mongolia</option>
 | 
			
		||||
                                        <option value="ME">Montenegro</option>
 | 
			
		||||
                                        <option value="MS">Montserrat</option>
 | 
			
		||||
                                        <option value="MA">Morocco</option>
 | 
			
		||||
                                        <option value="MZ">Mozambique</option>
 | 
			
		||||
                                        <option value="MM">Myanmar</option>
 | 
			
		||||
                                        <option value="NA">Namibia</option>
 | 
			
		||||
                                        <option value="NR">Nauru</option>
 | 
			
		||||
                                        <option value="NP">Nepal</option>
 | 
			
		||||
                                        <option value="NL">Netherlands</option>
 | 
			
		||||
                                        <option value="NC">New Caledonia</option>
 | 
			
		||||
                                        <option value="NZ">New Zealand</option>
 | 
			
		||||
                                        <option value="NI">Nicaragua</option>
 | 
			
		||||
                                        <option value="NE">Niger</option>
 | 
			
		||||
                                        <option value="NG">Nigeria</option>
 | 
			
		||||
                                        <option value="NU">Niue</option>
 | 
			
		||||
                                        <option value="NF">Norfolk Island</option>
 | 
			
		||||
                                        <option value="MP">Northern Mariana Islands</option>
 | 
			
		||||
                                        <option value="NO">Norway</option>
 | 
			
		||||
                                        <option value="OM">Oman</option>
 | 
			
		||||
                                        <option value="PK">Pakistan</option>
 | 
			
		||||
                                        <option value="PW">Palau</option>
 | 
			
		||||
                                        <option value="PS">Palestinian Territory, Occupied</option>
 | 
			
		||||
                                        <option value="PA">Panama</option>
 | 
			
		||||
                                        <option value="PG">Papua New Guinea</option>
 | 
			
		||||
                                        <option value="PY">Paraguay</option>
 | 
			
		||||
                                        <option value="PE">Peru</option>
 | 
			
		||||
                                        <option value="PH">Philippines</option>
 | 
			
		||||
                                        <option value="PN">Pitcairn</option>
 | 
			
		||||
                                        <option value="PL">Poland</option>
 | 
			
		||||
                                        <option value="PT">Portugal</option>
 | 
			
		||||
                                        <option value="PR">Puerto Rico</option>
 | 
			
		||||
                                        <option value="QA">Qatar</option>
 | 
			
		||||
                                        <option value="RE">Réunion</option>
 | 
			
		||||
                                        <option value="RO">Romania</option>
 | 
			
		||||
                                        <option value="RU">Russian Federation</option>
 | 
			
		||||
                                        <option value="RW">Rwanda</option>
 | 
			
		||||
                                        <option value="BL">Saint Barthélemy</option>
 | 
			
		||||
                                        <option value="SH">Saint Helena, Ascension and Tristan da Cunha</option>
 | 
			
		||||
                                        <option value="KN">Saint Kitts and Nevis</option>
 | 
			
		||||
                                        <option value="LC">Saint Lucia</option>
 | 
			
		||||
                                        <option value="MF">Saint Martin (French part)</option>
 | 
			
		||||
                                        <option value="PM">Saint Pierre and Miquelon</option>
 | 
			
		||||
                                        <option value="VC">Saint Vincent and the Grenadines</option>
 | 
			
		||||
                                        <option value="WS">Samoa</option>
 | 
			
		||||
                                        <option value="SM">San Marino</option>
 | 
			
		||||
                                        <option value="ST">Sao Tome and Principe</option>
 | 
			
		||||
                                        <option value="SA">Saudi Arabia</option>
 | 
			
		||||
                                        <option value="SN">Senegal</option>
 | 
			
		||||
                                        <option value="RS">Serbia</option>
 | 
			
		||||
                                        <option value="SC">Seychelles</option>
 | 
			
		||||
                                        <option value="SL">Sierra Leone</option>
 | 
			
		||||
                                        <option value="SG">Singapore</option>
 | 
			
		||||
                                        <option value="SX">Sint Maarten (Dutch part)</option>
 | 
			
		||||
                                        <option value="SK">Slovakia</option>
 | 
			
		||||
                                        <option value="SI">Slovenia</option>
 | 
			
		||||
                                        <option value="SB">Solomon Islands</option>
 | 
			
		||||
                                        <option value="SO">Somalia</option>
 | 
			
		||||
                                        <option value="ZA">South Africa</option>
 | 
			
		||||
                                        <option value="GS">South Georgia and the South Sandwich Islands</option>
 | 
			
		||||
                                        <option value="SS">South Sudan</option>
 | 
			
		||||
                                        <option value="ES">Spain</option>
 | 
			
		||||
                                        <option value="LK">Sri Lanka</option>
 | 
			
		||||
                                        <option value="SD">Sudan</option>
 | 
			
		||||
                                        <option value="SR">Suriname</option>
 | 
			
		||||
                                        <option value="SJ">Svalbard and Jan Mayen</option>
 | 
			
		||||
                                        <option value="SZ">Swaziland</option>
 | 
			
		||||
                                        <option value="SE">Sweden</option>
 | 
			
		||||
                                        <option value="CH">Switzerland</option>
 | 
			
		||||
                                        <option value="SY">Syrian Arab Republic</option>
 | 
			
		||||
                                        <option value="TW">Taiwan, Province of China</option>
 | 
			
		||||
                                        <option value="TJ">Tajikistan</option>
 | 
			
		||||
                                        <option value="TZ">Tanzania, United Republic of</option>
 | 
			
		||||
                                        <option value="TH">Thailand</option>
 | 
			
		||||
                                        <option value="TL">Timor-Leste</option>
 | 
			
		||||
                                        <option value="TG">Togo</option>
 | 
			
		||||
                                        <option value="TK">Tokelau</option>
 | 
			
		||||
                                        <option value="TO">Tonga</option>
 | 
			
		||||
                                        <option value="TT">Trinidad and Tobago</option>
 | 
			
		||||
                                        <option value="TN">Tunisia</option>
 | 
			
		||||
                                        <option value="TR">Turkey</option>
 | 
			
		||||
                                        <option value="TM">Turkmenistan</option>
 | 
			
		||||
                                        <option value="TC">Turks and Caicos Islands</option>
 | 
			
		||||
                                        <option value="TV">Tuvalu</option>
 | 
			
		||||
                                        <option value="UG">Uganda</option>
 | 
			
		||||
                                        <option value="UA">Ukraine</option>
 | 
			
		||||
                                        <option value="AE">United Arab Emirates</option>
 | 
			
		||||
                                        <option value="UM">United States Minor Outlying Islands</option>
 | 
			
		||||
                                        <option value="UY">Uruguay</option>
 | 
			
		||||
                                        <option value="UZ">Uzbekistan</option>
 | 
			
		||||
                                        <option value="VU">Vanuatu</option>
 | 
			
		||||
                                        <option value="VE">Venezuela, Bolivarian Republic of</option>
 | 
			
		||||
                                        <option value="VN">Viet Nam</option>
 | 
			
		||||
                                        <option value="VG">Virgin Islands, British</option>
 | 
			
		||||
                                        <option value="VI">Virgin Islands, U.S.</option>
 | 
			
		||||
                                        <option value="WF">Wallis and Futuna</option>
 | 
			
		||||
                                        <option value="EH">Western Sahara</option>
 | 
			
		||||
                                        <option value="YE">Yemen</option>
 | 
			
		||||
                                        <option value="ZM">Zambia</option>
 | 
			
		||||
                                        <option value="ZW">Zimbabwe</option>
 | 
			
		||||
                                    </select>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <div class="col-sm-4">
 | 
			
		||||
                                <div class="form-group" show-errors>
 | 
			
		||||
                                    <label for="address_zip"
 | 
			
		||||
                                           ng-bind="model.card.address_country === 'US' ? 'Zip Code' : 'Postal Code'"></label>
 | 
			
		||||
                                    <input type="text" id="address_zip" ng-model="model.card.address_zip"
 | 
			
		||||
                                           class="form-control" required name="address_zip" api-field />
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="box-footer">
 | 
			
		||||
                    <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
                        <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
                    </button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </form>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,33 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-trash"></i> Purge Vault</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit(model)" api-form="submitPromise">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>
 | 
			
		||||
            Continue below to delete all items in your vault. Items that belong to an organization that you share
 | 
			
		||||
            with will not be deleted.
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning</h4>
 | 
			
		||||
            Purging your vault is permanent. It cannot be undone.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="model.masterPassword"
 | 
			
		||||
                   class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Purge
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,37 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title" id="logoutSessionsModelLabel"><i class="fa fa-ban"></i> Deauthorize Sessions</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="logoutSessionsForm" ng-submit="logoutSessionsForm.$valid && submit(model)" api-form="submitPromise">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Concerned your account is logged in on another device?</p>
 | 
			
		||||
        <p>Proceed below to deauthorize all computers or devices that you have previously used.</p>
 | 
			
		||||
        <p>
 | 
			
		||||
            This security step is recommended if you previously used a public PC or accidentally saved your password
 | 
			
		||||
            on a device that isn't yours. This step will also clear all previously remembered two-step login sessions.
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning</h4>
 | 
			
		||||
            Proceeding will also log you out of your current session, requiring you to log back in. You will also be prompted
 | 
			
		||||
            for two-step login again, if enabled. Active sessions on other devices may continue to remain active for up to
 | 
			
		||||
            one hour.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="logoutSessionsForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in logoutSessionsForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="model.masterPassword" class="form-control"
 | 
			
		||||
                   required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="logoutSessionsForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="logoutSessionsForm.$loading"></i>Deauthorize
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,52 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>Two-step Login <small>secure your account</small></h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="box box-danger">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title"><i class="fa fa-warning"></i> Recovery Code <i class="fa fa-warning"></i></h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            The recovery code allows you to access your account in the event that you can no longer use your normal
 | 
			
		||||
            two-step login provider (ex. you lose your device). Bitwarden support will not be able to assist you if you lose
 | 
			
		||||
            access to your account. We recommend you write down or print the recovery code and keep it in a safe place.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="viewRecover()">View Recovery Code</button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Providers</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body no-padding">
 | 
			
		||||
            <div class="table-responsive">
 | 
			
		||||
                <table class="table table-striped table-hover table-vmiddle">
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="provider in providers | orderBy: 'displayOrder'">
 | 
			
		||||
                            <td style="width: 120px; height: 75px;" align="center">
 | 
			
		||||
                                <a href="#" stop-click ng-click="edit(provider)">
 | 
			
		||||
                                    <img alt="{{::provider.name}}" ng-src="{{'images/two-factor/' + provider.image}}" />
 | 
			
		||||
                                </a>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td>
 | 
			
		||||
                                <a href="#" stop-click ng-click="edit(provider)">
 | 
			
		||||
                                    {{::provider.name}}
 | 
			
		||||
                                    <span class="label label-info" ng-if="!premium && !provider.free"
 | 
			
		||||
                                          style="margin-left: 5px;">PREMIUM</span>
 | 
			
		||||
                                </a>
 | 
			
		||||
                                <div class="text-muted text-sm">{{::provider.description}}</div>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td style="width: 100px;" class="text-right">
 | 
			
		||||
                                <span class="label label-full"
 | 
			
		||||
                                      ng-class="{ 'label-success': provider.enabled, 'label-default': !provider.enabled }">
 | 
			
		||||
                                    {{provider.enabled ? 'Enabled' : 'Disabled'}}
 | 
			
		||||
                                </span>
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,116 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-key"></i> Two-step Login <small>authenticator app</small>
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="authTwoStepForm" ng-submit="authTwoStepForm.$valid && auth(authModel)" api-form="authPromise"
 | 
			
		||||
      ng-if="!model">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Enter your master password to modify two-step login settings.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="authTwoStepForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in authTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="authModel.masterPassword"
 | 
			
		||||
                   class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="authTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="authTwoStepForm.$loading"></i>Continue
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
<form name="submitTwoStepForm" ng-submit="submitTwoStepForm.$valid && submit(updateModel)" api-form="submitPromise"
 | 
			
		||||
      ng-if="model" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div ng-if="enabled">
 | 
			
		||||
            <div class="callout callout-success">
 | 
			
		||||
                <h4><i class="fa fa-check-circle"></i> Enabled</h4>
 | 
			
		||||
                <p>
 | 
			
		||||
                    Two-step login via authenticator app is enabled on your account.
 | 
			
		||||
                </p>
 | 
			
		||||
                <p>
 | 
			
		||||
                    In case you need to add it to another device, below is the QR code (or key) required by your
 | 
			
		||||
                    authenticator app.
 | 
			
		||||
                </p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <p>Need a two-step authenticator app? Download one of the following:</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!enabled">
 | 
			
		||||
            <p>Setting up two-step login with an authenticator app is easy, just follow these steps:</p>
 | 
			
		||||
            <h4>1. Download a two-step authenticator app</h4>
 | 
			
		||||
        </div>
 | 
			
		||||
        <ul class="fa-ul">
 | 
			
		||||
            <li>
 | 
			
		||||
                <i class="fa-li fa fa-apple fa-lg"></i>
 | 
			
		||||
                iOS devices:
 | 
			
		||||
                <a href="https://itunes.apple.com/us/app/authy/id494168017?mt=8" target="_blank">
 | 
			
		||||
                    Authy for iOS
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li>
 | 
			
		||||
                <i class="fa-li fa fa-android fa-lg"></i>
 | 
			
		||||
                Android devices:
 | 
			
		||||
                <a href="https://play.google.com/store/apps/details?id=com.authy.authy" target="_blank">
 | 
			
		||||
                    Authy for Android
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li>
 | 
			
		||||
                <i class="fa-li fa fa-windows fa-lg"></i>
 | 
			
		||||
                Windows devices:
 | 
			
		||||
                <a href="https://www.microsoft.com/en-us/store/apps/authenticator/9wzdncrfj3rj" target="_blank">
 | 
			
		||||
                    Microsoft Authenticator
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
        </ul>
 | 
			
		||||
        <p>These apps are recommended, however, other authenticator apps will also work.</p>
 | 
			
		||||
        <hr ng-if="enabled" />
 | 
			
		||||
        <h4 ng-if="!enabled" style="margin-top: 30px;">2. Scan this QR code with your authenticator app</h4>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-sm-4 text-center">
 | 
			
		||||
                <p><img ng-src="{{model.qr}}" alt="QR" /></p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-sm-8">
 | 
			
		||||
                <p>
 | 
			
		||||
                    <strong>Can't scan the code?</strong> You can add the code to your application manually using the
 | 
			
		||||
                    following details:
 | 
			
		||||
                </p>
 | 
			
		||||
                <ul class="list-unstyled">
 | 
			
		||||
                    <li><strong>Key:</strong> <code>{{model.key}}</code></li>
 | 
			
		||||
                    <li><strong>Account:</strong> {{account}}</li>
 | 
			
		||||
                    <li><strong>Time based:</strong> Yes</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!enabled">
 | 
			
		||||
            <h4 style="margin-top: 30px;">
 | 
			
		||||
                3. Enter the resulting 6 digit verification code from the app
 | 
			
		||||
            </h4>
 | 
			
		||||
            <div class="callout callout-danger validation-errors" ng-show="submitTwoStepForm.$errors">
 | 
			
		||||
                <h4>Errors have occurred</h4>
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li ng-repeat="e in submitTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group" show-errors>
 | 
			
		||||
                <label for="token" class="sr-only">Verification Code</label>
 | 
			
		||||
                <input type="text" id="token" name="Token" placeholder="Verification Code" ng-model="updateModel.token"
 | 
			
		||||
                       class="form-control" required api-field />
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="submitTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="submitTwoStepForm.$loading"></i>
 | 
			
		||||
            {{enabled ? 'Disable' : 'Enable'}}
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,76 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-key"></i> Two-step Login <small>duo</small>
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="authTwoStepForm" ng-submit="authTwoStepForm.$valid && auth(authModel)" api-form="authPromise"
 | 
			
		||||
      ng-if="!authed">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Enter your master password to modify two-step login settings.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="authTwoStepForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in authTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="authModel.masterPassword"
 | 
			
		||||
                   class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="authTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="authTwoStepForm.$loading"></i>Continue
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
<form name="submitTwoStepForm" ng-submit="submitTwoStepForm.$valid && submit(updateModel)" api-form="submitPromise"
 | 
			
		||||
      ng-if="authed" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div ng-if="enabled">
 | 
			
		||||
            <div class="callout callout-success">
 | 
			
		||||
                <h4><i class="fa fa-check-circle"></i> Enabled</h4>
 | 
			
		||||
                <p>Two-step log via Duo is enabled on your account.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <ul class="list-unstyled">
 | 
			
		||||
                <li><strong>Integration Key:</strong> {{updateModel.ikey}}</li>
 | 
			
		||||
                <li><strong>Secret Key:</strong> ************</li>
 | 
			
		||||
                <li><strong>API Hostname:</strong> {{updateModel.host}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!enabled">
 | 
			
		||||
            <div class="callout callout-danger validation-errors" ng-show="submitTwoStepForm.$errors">
 | 
			
		||||
                <h4>Errors have occurred</h4>
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li ng-repeat="e in submitTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
            <p>Enter the Bitwarden application information from your Duo Admin panel:</p>
 | 
			
		||||
            <div class="form-group" show-errors>
 | 
			
		||||
                <label for="ikey">Integration Key</label>
 | 
			
		||||
                <input type="text" id="ikey" name="IntegrationKey" ng-model="updateModel.ikey" class="form-control"
 | 
			
		||||
                       required api-field />
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group" show-errors>
 | 
			
		||||
                <label for="skey">Secret Key</label>
 | 
			
		||||
                <input type="password" id="skey" name="SecretKey" ng-model="updateModel.skey" class="form-control"
 | 
			
		||||
                       required api-field autocomplete="new-password" />
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group" show-errors>
 | 
			
		||||
                <label for="host">API Hostname</label>
 | 
			
		||||
                <input type="text" id="host" name="Host" placeholder="ex. api-xxxxxxxx.duosecurity.com"
 | 
			
		||||
                       ng-model="updateModel.host" class="form-control" required api-field />
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="submitTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="submitTwoStepForm.$loading"></i>
 | 
			
		||||
            {{enabled ? 'Disable' : 'Enable'}}
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,77 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-key"></i> Two-step Login <small>email</small>
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="authTwoStepForm" ng-submit="authTwoStepForm.$valid && auth(authModel)" api-form="authPromise"
 | 
			
		||||
      ng-if="!authed">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Enter your master password to modify two-step login settings.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="authTwoStepForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in authTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="authModel.masterPassword"
 | 
			
		||||
                   class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="authTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="authTwoStepForm.$loading"></i>Continue
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
<form name="submitTwoStepForm" ng-submit="submitTwoStepForm.$valid && submit(updateModel)" api-form="submitPromise"
 | 
			
		||||
      ng-if="authed" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div ng-if="enabled">
 | 
			
		||||
            <div class="callout callout-success">
 | 
			
		||||
                <h4><i class="fa fa-check-circle"></i> Enabled</h4>
 | 
			
		||||
                <p>Two-step log via email is enabled on your account.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            Email: <strong>{{updateModel.email}}</strong>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!enabled">
 | 
			
		||||
            <div class="callout callout-danger validation-errors" ng-show="submitTwoStepForm.$errors">
 | 
			
		||||
                <h4>Errors have occurred</h4>
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li ng-repeat="e in submitTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
            <p>Setting up two-step login with email is easy, just follow these steps:</p>
 | 
			
		||||
            <h4>1. Enter the email that you wish to receive verification codes</h4>
 | 
			
		||||
            <div class="form-group" show-errors>
 | 
			
		||||
                <label for="token" class="sr-only">Email</label>
 | 
			
		||||
                <input type="text" id="email" name="Email" placeholder="Email" ng-model="updateModel.email"
 | 
			
		||||
                       class="form-control" required api-field />
 | 
			
		||||
            </div>
 | 
			
		||||
            <button type="button" class="btn btn-default btn-flat" ng-click="sendEmail(updateModel)" ng-disabled="emailLoading">
 | 
			
		||||
                <i class="fa fa-refresh fa-spin loading-icon" ng-show="emailLoading"></i>
 | 
			
		||||
                Send Email
 | 
			
		||||
            </button>
 | 
			
		||||
            <span class="text-green" ng-if="emailSuccess">Verification code email was sent.</span>
 | 
			
		||||
            <span class="text-red" ng-if="emailError">An error occurred when trying to send the email.</span>
 | 
			
		||||
            <h4 style="margin-top: 30px;">
 | 
			
		||||
                2. Enter the resulting 6 digit verification code from the email
 | 
			
		||||
            </h4>
 | 
			
		||||
            <div class="form-group" show-errors>
 | 
			
		||||
                <label for="token" class="sr-only">Verification Code</label>
 | 
			
		||||
                <input type="text" id="token" name="Token" placeholder="Verification Code" ng-model="updateModel.token"
 | 
			
		||||
                       class="form-control" required api-field />
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="submitTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="submitTwoStepForm.$loading"></i>
 | 
			
		||||
            {{enabled ? 'Disable' : 'Enable'}}
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,48 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-key"></i> Two-step Login <small>recovery code</small>
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="authTwoStepForm" ng-submit="authTwoStepForm.$valid && auth(authModel)" api-form="authPromise"
 | 
			
		||||
      ng-if="!authed">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Enter your master password to view your recovery code.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="authTwoStepForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in authTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="authModel.masterPassword"
 | 
			
		||||
                   class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="authTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="authTwoStepForm.$loading"></i>Continue
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
<div ng-if="authed">
 | 
			
		||||
    <div class="modal-body text-center">
 | 
			
		||||
        <div ng-if="code">
 | 
			
		||||
            <p>Your two-step login recovery code:</p>
 | 
			
		||||
            <p class="lead"><code class="text-lg">{{code}}</code></p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!code">
 | 
			
		||||
            You have not enabled any two-step login providers yet. After you have enabled a two-step login provider you can
 | 
			
		||||
            check back here for your recovery code.
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-if="code" ng-click="print()">
 | 
			
		||||
            <i class="fa fa-print"></i>
 | 
			
		||||
            Print Code
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,93 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-key"></i> Two-step Login <small>fido u2f</small>
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="authTwoStepForm" ng-submit="authTwoStepForm.$valid && auth(authModel)" api-form="authPromise"
 | 
			
		||||
      ng-if="!authed">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Enter your master password to modify two-step login settings.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="authTwoStepForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in authTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="authModel.masterPassword"
 | 
			
		||||
                   class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="authTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="authTwoStepForm.$loading"></i>Continue
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
<form name="submitTwoStepForm" ng-submit="submitTwoStepForm.$valid && submit()" api-form="submitPromise"
 | 
			
		||||
      ng-if="authed" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning <i class="fa fa-warning"></i></h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                Due to platform limitations, FIDO U2F cannot be used on all Bitwarden applications. You should enable
 | 
			
		||||
                another two-step login provider so that you can access your account when FIDO U2F cannot be used.
 | 
			
		||||
            </p>
 | 
			
		||||
            <p>Supported platforms:</p>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li>
 | 
			
		||||
                    Web vault on a desktop/laptop with a U2F enabled browser (Chrome, Opera, Vivaldi, Brave, or Firefox with addon).
 | 
			
		||||
                </li>
 | 
			
		||||
                <li>Browser extensions on Chrome, Opera, Vivaldi, or Brave.</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="enabled">
 | 
			
		||||
            <div class="callout callout-success">
 | 
			
		||||
                <h4><i class="fa fa-check-circle"></i> Enabled</h4>
 | 
			
		||||
                <p>Two-step log via FIDO U2F is enabled on your account.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!enabled">
 | 
			
		||||
            <div class="callout callout-danger validation-errors" ng-show="submitTwoStepForm.$errors">
 | 
			
		||||
                <h4>Errors have occurred</h4>
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li ng-repeat="e in submitTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
            <p>To add a new FIDO U2F Security Key to your account:</p>
 | 
			
		||||
            <ol>
 | 
			
		||||
                <li>Plug the security key into your computer's USB port.</li>
 | 
			
		||||
                <li>If the security key has a button, touch it.</li>
 | 
			
		||||
            </ol>
 | 
			
		||||
            <hr />
 | 
			
		||||
            <div class="text-center">
 | 
			
		||||
                <div ng-show="deviceListening">
 | 
			
		||||
                    <p><i class="fa fa-spin fa-spinner fa-2x"></i></p>
 | 
			
		||||
                    <p>Waiting for you to touch the button on your security key...</p>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="text-green" ng-show="deviceResponse">
 | 
			
		||||
                    <p><i class="fa fa-check-circle fa-2x"></i></p>
 | 
			
		||||
                    <p>Success!</p>
 | 
			
		||||
                    Click the "Enable" button below to enable this security key for two-step login.
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="text-red" ng-show="deviceError">
 | 
			
		||||
                    <p><i class="fa fa-warning fa-2x"></i></p>
 | 
			
		||||
                    <p>Error!</p>
 | 
			
		||||
                    <p>There was a problem reading the security key.</p>
 | 
			
		||||
                    <button type="button" class="btn btn-default btn-flat" ng-click="readDevice()">Try again</button>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat"
 | 
			
		||||
                ng-disabled="(!enabled && !deviceResponse) || submitTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="submitTwoStepForm.$loading"></i>
 | 
			
		||||
            {{enabled ? 'Disable' : 'Enable'}}
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,127 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-key"></i> Two-step Login <small>yubikey</small>
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="authTwoStepForm" ng-submit="authTwoStepForm.$valid && auth(authModel)" api-form="authPromise"
 | 
			
		||||
      ng-if="!authed">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Enter your master password to modify two-step login settings.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="authTwoStepForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in authTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="authModel.masterPassword"
 | 
			
		||||
                   class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="authTwoStepForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="authTwoStepForm.$loading"></i>Continue
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
<form name="submitTwoStepForm" ng-submit="submitTwoStepForm.$valid && submit(updateModel)" api-form="submitPromise"
 | 
			
		||||
      ng-if="authed" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning <i class="fa fa-warning"></i></h4>
 | 
			
		||||
            <p>
 | 
			
		||||
                Due to platform limitations, YubiKeys cannot be used on all Bitwarden applications. You should enable
 | 
			
		||||
                another two-step login provider so that you can access your account when YubiKeys cannot be used.
 | 
			
		||||
            </p>
 | 
			
		||||
            <p>Supported platforms:</p>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li>Web vault on a device with a USB port that can accept your YubiKey.</li>
 | 
			
		||||
                <li>Browser extensions.</li>
 | 
			
		||||
                <li>
 | 
			
		||||
                    Android on a device with
 | 
			
		||||
                    <a href="https://en.wikipedia.org/wiki/List_of_NFC-enabled_mobile_devices" target="_blank">
 | 
			
		||||
                        NFC capabilities
 | 
			
		||||
                    </a>. Read more <a href="https://forum.yubico.com/viewtopic.php?f=26&t=1302" target="_blank">here</a>.
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="enabled">
 | 
			
		||||
            <div class="callout callout-success">
 | 
			
		||||
                <h4><i class="fa fa-check-circle"></i> Enabled</h4>
 | 
			
		||||
                <p>Two-step log via YubiKey is enabled on your account.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="submitTwoStepForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in submitTwoStepForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <p>To add a new YubiKey to your account:</p>
 | 
			
		||||
        <ol>
 | 
			
		||||
            <li>Plug the YubiKey (NEO or 4 series) into your computer's USB port.</li>
 | 
			
		||||
            <li>Select in the first empty <b>Key</b> field below.</li>
 | 
			
		||||
            <li>Touch the YubiKey's button.</li>
 | 
			
		||||
            <li>Save the form.</li>
 | 
			
		||||
        </ol>
 | 
			
		||||
        <hr />
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="key1">YubiKey #1</label>
 | 
			
		||||
            <span ng-if="updateModel.key1.existingKey">
 | 
			
		||||
                <a href="#" class="btn btn-link btn-xs" stop-click ng-click="remove(updateModel.key1)">[remove]</a>
 | 
			
		||||
            </span>
 | 
			
		||||
            <div ng-if="updateModel.key1.existingKey" class="monospaced">
 | 
			
		||||
                {{updateModel.key1.existingKey}}
 | 
			
		||||
            </div>
 | 
			
		||||
            <input type="password" id="key1" name="Key1" ng-model="updateModel.key1.key" class="form-control" api-field
 | 
			
		||||
                   ng-show="!updateModel.key1.existingKey" autocomplete="new-password" />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="key2">YubiKey #2</label>
 | 
			
		||||
            <span ng-if="updateModel.key2.existingKey">
 | 
			
		||||
                <a href="#" class="btn btn-link btn-xs" stop-click ng-click="remove(updateModel.key2)">[remove]</a>
 | 
			
		||||
            </span>
 | 
			
		||||
            <div ng-if="updateModel.key2.existingKey" class="monospaced">
 | 
			
		||||
                {{updateModel.key2.existingKey}}
 | 
			
		||||
            </div>
 | 
			
		||||
            <input type="password" id="key2" name="Key2" ng-model="updateModel.key2.key" class="form-control" api-field
 | 
			
		||||
                   ng-show="!updateModel.key2.existingKey" autocomplete="new-password" />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="key3">YubiKey #3</label>
 | 
			
		||||
            <span ng-if="updateModel.key3.existingKey">
 | 
			
		||||
                <a href="#" class="btn btn-link btn-xs" stop-click ng-click="remove(updateModel.key3)">[remove]</a>
 | 
			
		||||
            </span>
 | 
			
		||||
            <div ng-if="updateModel.key3.existingKey" class="monospaced">
 | 
			
		||||
                {{updateModel.key3.existingKey}}
 | 
			
		||||
            </div>
 | 
			
		||||
            <input type="password" id="key3" name="Key3" ng-model="updateModel.key3.key" class="form-control" api-field
 | 
			
		||||
                   ng-show="!updateModel.key3.existingKey" autocomplete="new-password" />
 | 
			
		||||
        </div>
 | 
			
		||||
        <strong>NFC Support</strong>
 | 
			
		||||
        <div class="checkbox">
 | 
			
		||||
            <label>
 | 
			
		||||
                <input type="checkbox" name="Nfc" id="nfc" ng-model="updateModel.nfc" /> One of my keys supports NFC.
 | 
			
		||||
            </label>
 | 
			
		||||
        </div>
 | 
			
		||||
        <p class="help-block">
 | 
			
		||||
            If one of your YubiKeys supports NFC (such as a YubiKey NEO), you will be prompted on mobile devices whenever NFC
 | 
			
		||||
            availability is detected.
 | 
			
		||||
        </p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="submitTwoStepForm.$loading || disableLoading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="submitTwoStepForm.$loading"></i>
 | 
			
		||||
            Save
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="disable()" ng-disabled="disableLoading"
 | 
			
		||||
                ng-if="enabled">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="disableLoading"></i>
 | 
			
		||||
            Disable All Keys
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,47 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-key"></i> Update Encryption Key</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && save(form)" api-form="savePromise">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>
 | 
			
		||||
            This is <b>NOT</b> a security notification indicating that anything is wrong or has been compromised on your
 | 
			
		||||
            account. If interested, you can
 | 
			
		||||
            <a href="https://help.bitwarden.com/article/update-encryption-key/" target="_blank">read more details here</a>.
 | 
			
		||||
        </p>
 | 
			
		||||
        <hr />
 | 
			
		||||
        <p>
 | 
			
		||||
            You are currently using an outdated encryption scheme. We've moved to larger encryption keys
 | 
			
		||||
            that provide better security and access to newer features.
 | 
			
		||||
        </p>
 | 
			
		||||
        <p>
 | 
			
		||||
            Updating your encryption key is quick and easy. Just type your master password below and you're done!
 | 
			
		||||
            This update will eventually become mandatory.
 | 
			
		||||
        </p>
 | 
			
		||||
        <hr />
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning</h4>
 | 
			
		||||
            After updating your encryption key, you are required to log out and back in to all Bitwarden applications that you
 | 
			
		||||
            are currently using (such as the mobile app or browser extensions). Failure to log out and back
 | 
			
		||||
            in (which downloads your new encryption key) may result in data corruption. We will attempt to log you out
 | 
			
		||||
            automatically, however it may be delayed.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="masterPassword" class="form-control"
 | 
			
		||||
                   required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Update Key
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,32 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <h1>
 | 
			
		||||
        Tools
 | 
			
		||||
        <small>helpful utilities</small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Import/Export</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            <p>
 | 
			
		||||
                Quickly import your logins and other data from a previous export or from another
 | 
			
		||||
                password management application.
 | 
			
		||||
            </p>
 | 
			
		||||
            <p>You can also export all of your vault data in <code>.csv</code> format.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-footer">
 | 
			
		||||
            <button class="btn btn-default btn-flat" type="button" ng-click="import()">Import Data</button>
 | 
			
		||||
            <button class="btn btn-default btn-flat" type="button" ng-click="export()">Export Data</button>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box box-default">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">Password Generator</h3>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body">
 | 
			
		||||
            Password generator is currently available in all other client applications. Coming soon to the web vault!
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,33 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title" id="exportModelLabel"><i class="fa fa-cloud-download"></i> Export</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="exportForm" ng-submit="exportForm.$valid && export(model)" api-form="exportPromise" ng-show="!startedExport">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Enter your master password to continue.</p>
 | 
			
		||||
        <div class="callout callout-warning">
 | 
			
		||||
            <h4><i class="fa fa-warning"></i> Warning</h4>
 | 
			
		||||
            This export contains your <u>unencrypted</u> data in <code>.csv</code> format. You should not store or send the file
 | 
			
		||||
            over unsecure channels (such as email). Delete it immediately after you are done using it.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="exportForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in exportForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="masterPassword">Master Password</label>
 | 
			
		||||
            <input type="password" id="masterPassword" name="MasterPasswordHash" ng-model="model.masterPassword"
 | 
			
		||||
                   class="form-control" master-password required api-field ng-model-options="{ 'updateOn': 'blur'}" />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat">Export</button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
<div class="modal-body text-center" ng-show="startedExport">
 | 
			
		||||
    <p><i class="fa fa-cog fa-spin fa-3x"></i></p>
 | 
			
		||||
    <p>Please wait. We are now exporting all of your data to a <code>.csv</code> file.</p>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,48 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title" id="importModelLabel"><i class="fa fa-cloud-upload"></i> Import</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="importForm" ng-submit="importForm.$valid && import(model, importForm)" ng-show="!processing">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="importForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in importForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group">
 | 
			
		||||
            <label for="source">1. Select the format of the import file</label>
 | 
			
		||||
            <select id="source" name="source" class="form-control" ng-model="model.source" ng-change="setSource()" required>
 | 
			
		||||
                <option value="">-- Select --</option>
 | 
			
		||||
                <option ng-repeat="option in options | filter: { featured: true } | orderBy: ['sort', 'name']"
 | 
			
		||||
                        value="{{option.id}}">{{option.name}}</option>
 | 
			
		||||
                <option value="-" disabled ng-if="splitFeatured"></option>
 | 
			
		||||
                <option ng-repeat="option in options | filter: { featured: '!true' } | orderBy: ['sort', 'name']" 
 | 
			
		||||
                        value="{{option.id}}">{{option.name}}</option>
 | 
			
		||||
            </select>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="callout callout-default" ng-show="model.source">
 | 
			
		||||
            <h4><i class="fa fa-info-circle"></i> {{source.name}} Instructions</h4>
 | 
			
		||||
            <div ng-bind-html="source.instructions"></div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group">
 | 
			
		||||
            <label for="file">2. Select the import file</label>
 | 
			
		||||
            <input type="file" id="file" name="file" />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group">
 | 
			
		||||
            <label for="fileContents">or copy/paste the import file contents</label>
 | 
			
		||||
            <textarea id="fileContents" class="form-control" name="fileContents" ng-model="model.fileContents"
 | 
			
		||||
                      style="height: 150px;"></textarea>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat">
 | 
			
		||||
            Import
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
<div ng-show="processing" class="modal-body text-center">
 | 
			
		||||
    <p><i class="fa fa-cog fa-spin fa-3x"></i></p>
 | 
			
		||||
    <p>Please wait. We are now importing all of your data. Do not close this window. You will be redirected to your vault when the import has completed.</p>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,234 +0,0 @@
 | 
			
		|||
<section class="content-header">
 | 
			
		||||
    <div class="btn-group pull-right">
 | 
			
		||||
        <button type="button" class="btn btn-link dropdown-toggle" data-toggle="dropdown" ng-disabled="actionLoading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin" ng-show="actionLoading"></i>
 | 
			
		||||
            Actions <span class="caret"></span>
 | 
			
		||||
        </button>
 | 
			
		||||
        <ul class="dropdown-menu">
 | 
			
		||||
            <li>
 | 
			
		||||
                <a href="#" stop-click ng-click="bulkMove()">
 | 
			
		||||
                    <i class="fa fa-fw fa-share"></i> Move Selected
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li>
 | 
			
		||||
                <a href="#" stop-click ng-click="bulkDelete()">
 | 
			
		||||
                    <i class="fa fa-fw fa-trash"></i> Delete Selected
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li role="separator" class="divider"></li>
 | 
			
		||||
            <li>
 | 
			
		||||
                <a href="#" stop-click ng-click="selectAll()">
 | 
			
		||||
                    <i class="fa fa-fw fa-check-square-o"></i> Select All
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li>
 | 
			
		||||
                <a href="#" stop-click ng-click="unselectAll()">
 | 
			
		||||
                    <i class="fa fa-fw fa-minus-square-o"></i> Unselect All
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
        </ul>
 | 
			
		||||
    </div>
 | 
			
		||||
    <h1>
 | 
			
		||||
        My Vault
 | 
			
		||||
        <small class="visible-md-inline visible-lg-inline">
 | 
			
		||||
            <span ng-pluralize count="vaultFolders.length > 0 ? vaultFolders.length - 1 : 0"
 | 
			
		||||
                  when="{'1': '{} folder', 'other': '{} folders'}"></span>,
 | 
			
		||||
            <span ng-pluralize count="vaultCollections.length"
 | 
			
		||||
                  when="{'1': '{} collection', 'other': '{} collections'}"></span>, &
 | 
			
		||||
            <span ng-pluralize count="ciphers.length" when="{'1': '{} item', 'other': '{} items'}"></span>
 | 
			
		||||
        </small>
 | 
			
		||||
    </h1>
 | 
			
		||||
</section>
 | 
			
		||||
<section class="content">
 | 
			
		||||
    <div ng-show="loadingCiphers">
 | 
			
		||||
        <p>Loading...</p>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="box" ng-show="!loadingCiphers">
 | 
			
		||||
        <div class="box-header with-border">
 | 
			
		||||
            <h3 class="box-title">
 | 
			
		||||
                <i class="fa {{selectedIcon}}"></i>
 | 
			
		||||
                {{selectedFolder ? selectedFolder.name : selectedCollection ? selectedCollection.name : selectedTitle}}
 | 
			
		||||
                <small ng-pluralize count="filteredCiphers.length" when="{'1': '{} item', 'other': '{} items'}"></small>
 | 
			
		||||
            </h3>
 | 
			
		||||
            <div class="box-tools" ng-if="selectedFolder && selectedFolder.id">
 | 
			
		||||
                <div class="btn-group">
 | 
			
		||||
                    <button type="button" class="btn btn-box-tool dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                        <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                    </button>
 | 
			
		||||
                    <ul class="dropdown-menu dropdown-menu-right">
 | 
			
		||||
                        <li>
 | 
			
		||||
                            <a href="#" stop-click ng-click="editFolder(selectedFolder)">
 | 
			
		||||
                                <i class="fa fa-fw fa-pencil"></i> Edit Folder
 | 
			
		||||
                            </a>
 | 
			
		||||
                        </li>
 | 
			
		||||
                        <li>
 | 
			
		||||
                            <a href="#" stop-click ng-click="deleteFolder(selectedFolder)" class="text-red">
 | 
			
		||||
                                <i class="fa fa-fw fa-trash"></i> Delete Folder
 | 
			
		||||
                            </a>
 | 
			
		||||
                        </li>
 | 
			
		||||
                    </ul>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="box-body" ng-class="{'no-padding': filteredCiphers.length}">
 | 
			
		||||
            <div ng-show="!filteredCiphers.length">
 | 
			
		||||
                <p>No items to list.</p>
 | 
			
		||||
                <button type="button" ng-click="addCipher()" class="btn btn-default btn-flat">
 | 
			
		||||
                    Add an Item
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="filteredCiphers.length">
 | 
			
		||||
                <table class="table table-striped table-hover table-vmiddle">
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="cipher in filteredCiphers = (ciphers | filter: cipherFilter() |
 | 
			
		||||
                            filter: (searchVaultText || '')) track by cipher.id">
 | 
			
		||||
                            <td style="width: 70px;">
 | 
			
		||||
                                <div class="btn-group" data-append-to="body">
 | 
			
		||||
                                    <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                        <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                                    </button>
 | 
			
		||||
                                    <ul class="dropdown-menu">
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="editCipher(cipher)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-pencil"></i> Edit
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li>
 | 
			
		||||
                                            <a href="#" stop-click ng-click="attachments(cipher)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-paperclip"></i> Attachments
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li ng-show="!cipher.organizationId">
 | 
			
		||||
                                            <a href="#" stop-click ng-click="share(cipher)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-share-alt"></i> Share
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li ng-show="cipher.organizationId && cipher.edit">
 | 
			
		||||
                                            <a href="#" stop-click ng-click="editCollections(cipher)">
 | 
			
		||||
                                                <i class="fa fa-fw fa-cubes"></i> Collections
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li ng-show="cipher.meta.password">
 | 
			
		||||
                                            <a href="#" stop-click ngclipboard ngclipboard-error="clipboardError(e)"
 | 
			
		||||
                                               data-clipboard-text="{{cipher.meta.password}}">
 | 
			
		||||
                                                <i class="fa fa-fw fa-clipboard"></i> Copy Password
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                        <li ng-show="cipher.edit">
 | 
			
		||||
                                            <a href="#" stop-click ng-click="deleteCipher(cipher)" class="text-red">
 | 
			
		||||
                                                <i class="fa fa-fw fa-trash"></i> Delete
 | 
			
		||||
                                            </a>
 | 
			
		||||
                                        </li>
 | 
			
		||||
                                    </ul>
 | 
			
		||||
                                </div>
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td class="action-select" ng-click="select($event)">
 | 
			
		||||
                                <input type="checkbox" value="{{::cipher.id}}" name="cipherSelection" stop-prop />
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td class="vault-icon" ng-click="select($event)">
 | 
			
		||||
                                <i class="fa fa-fw fa-lg {{::cipher.icon}}" ng-if="!cipher.meta.image"></i>
 | 
			
		||||
                                <img alt="" ng-if="cipher.meta.image" ng-src="{{cipher.meta.image}}"
 | 
			
		||||
                                     fallback-src="images/fa-globe.png" />
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td ng-click="select($event)">
 | 
			
		||||
                                <a href="#" stop-click ng-click="editCipher(cipher)" stop-prop>{{cipher.name}}</a>
 | 
			
		||||
                                <i class="fa fa-star text-muted" title="Favorite" ng-show="cipher.favorite" stop-prop></i>
 | 
			
		||||
                                <i class="fa fa-share-alt text-muted" title="Shared" ng-show="cipher.organizationId"
 | 
			
		||||
                                   stop-prop></i>
 | 
			
		||||
                                <i class="fa fa-paperclip text-muted" title="Attachments" ng-if="cipher.hasAttachments"
 | 
			
		||||
                                   stop-prop></i>
 | 
			
		||||
                                <br />
 | 
			
		||||
                                <span class="text-sm text-muted" stop-prop>{{cipher.subTitle}}</span>
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</section>
 | 
			
		||||
<aside class="control-sidebar control-sidebar-light">
 | 
			
		||||
    <div class="tab-content">
 | 
			
		||||
        <form class="search-form">
 | 
			
		||||
            <label for="search" class="sr-only">Search</label>
 | 
			
		||||
            <div class="form-group has-feedback">
 | 
			
		||||
                <input type="search" id="search" class="form-control" placeholder="Search my vault..."
 | 
			
		||||
                       ng-model="searchVaultText" />
 | 
			
		||||
                <span class="fa fa-search form-control-feedback" aria-hidden="true"></span>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
        <ul class="control-sidebar-menu">
 | 
			
		||||
            <li ng-class="{active: selectedAll}">
 | 
			
		||||
                <a href="#" stop-click ng-click="filterAll()">
 | 
			
		||||
                    <i class="fa fa-th fa-fw"></i> All Items
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li ng-class="{active: selectedFavorites}">
 | 
			
		||||
                <a href="#" stop-click ng-click="filterFavorites()">
 | 
			
		||||
                    <i class="fa fa-star fa-fw"></i> Favorites
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
        </ul>
 | 
			
		||||
        <h3 class="control-sidebar-heading">Types</h3>
 | 
			
		||||
        <div class="control-sidebar-section">
 | 
			
		||||
            <ul class="control-sidebar-menu">
 | 
			
		||||
                <li ng-class="{active: constants.cipherType.login === selectedType}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterType(constants.cipherType.login)">
 | 
			
		||||
                        <i class="fa fa-globe fa-fw"></i> Login
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li ng-class="{active: constants.cipherType.card === selectedType}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterType(constants.cipherType.card)">
 | 
			
		||||
                        <i class="fa fa-credit-card fa-fw"></i> Card
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li ng-class="{active: constants.cipherType.identity === selectedType}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterType(constants.cipherType.identity)">
 | 
			
		||||
                        <i class="fa fa-id-card-o fa-fw"></i> Identity
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
                <li ng-class="{active: constants.cipherType.secureNote === selectedType}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterType(constants.cipherType.secureNote)">
 | 
			
		||||
                        <i class="fa fa-sticky-note-o fa-fw"></i> Secure Note
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <h3 class="control-sidebar-heading">Folders</h3>
 | 
			
		||||
        <div ng-show="loadingGroupings">
 | 
			
		||||
            <p>Loading...</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="control-sidebar-section" ng-show="!loadingGroupings">
 | 
			
		||||
            <ul class="control-sidebar-menu">
 | 
			
		||||
                <li ng-repeat="folder in vaultFolders | orderBy: [groupingSort] track by folder.id"
 | 
			
		||||
                    ng-class="{active: selectedFolder && folder.id === selectedFolder.id}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterFolder(folder)">
 | 
			
		||||
                        <i class="fa fa-caret-right fa-fw"></i>
 | 
			
		||||
                        {{folder.name}}
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <h3 class="control-sidebar-heading">Collections</h3>
 | 
			
		||||
        <div ng-show="loadingGroupings">
 | 
			
		||||
            <p>Loading...</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!loadingGroupings && !vaultCollections.length">
 | 
			
		||||
            <p>No collections are being shared with you. <i class="fa fa-frown-o"></i></p>
 | 
			
		||||
            <a ui-sref="backend.user.settingsCreateOrg" class="btn btn-default btn-lint">
 | 
			
		||||
                Create an Organization
 | 
			
		||||
            </a>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="control-sidebar-section" ng-show="!loadingGroupings && vaultCollections.length">
 | 
			
		||||
            <ul class="control-sidebar-menu">
 | 
			
		||||
                <li ng-repeat="collection in vaultCollections | orderBy: [groupingSort] track by collection.id"
 | 
			
		||||
                    ng-class="{active: selectedCollection && collection.id === selectedCollection.id}">
 | 
			
		||||
                    <a href="#" stop-click ng-click="filterCollection(collection)">
 | 
			
		||||
                        <i class="fa fa-caret-right fa-fw"></i>
 | 
			
		||||
                        {{collection.name}}
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
</aside>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,616 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-plus-circle"></i> Add New Item</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && save()" api-form="savePromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-sm-6">
 | 
			
		||||
                <div class="form-group">
 | 
			
		||||
                    <label for="type">What type of item is this?</label>
 | 
			
		||||
                    <select id="type" name="Type" ng-model="selectedType" class="form-control" ng-change="typeChanged()">
 | 
			
		||||
                        <option value="{{constants.cipherType.login}}">Login</option>
 | 
			
		||||
                        <option value="{{constants.cipherType.card}}">Card</option>
 | 
			
		||||
                        <option value="{{constants.cipherType.identity}}">Identity</option>
 | 
			
		||||
                        <option value="{{constants.cipherType.secureNote}}">Secure Note</option>
 | 
			
		||||
                    </select>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-sm-6">
 | 
			
		||||
                <div class="form-group" show-errors>
 | 
			
		||||
                    <label for="name">Name</label> <span>*</span>
 | 
			
		||||
                    <input type="text" id="name" name="Name" ng-model="cipher.name" class="form-control" required api-field />
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-sm-6" ng-if="!hideFolders">
 | 
			
		||||
                <div class="form-group" show-errors>
 | 
			
		||||
                    <label for="folder">Folder</label>
 | 
			
		||||
                    <select id="folder" name="FolderId" ng-model="cipher.folderId" class="form-control" api-field>
 | 
			
		||||
                        <option ng-repeat="folder in folders | orderBy: folderSort" value="{{folder.id}}">{{folder.name}}</option>
 | 
			
		||||
                    </select>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="cipher.type === constants.cipherType.login">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="username">Username</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="username" name="Login.Username" ng-model="cipher.login.username"
 | 
			
		||||
                                   class="form-control monospaced" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Username" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)"
 | 
			
		||||
                                        data-clipboard-target="#username">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors style="margin-bottom: 5px;">
 | 
			
		||||
                        <div class="pull-right password-options">
 | 
			
		||||
                            <i class="fa fa-lg fa-refresh" uib-tooltip="Generate Password" tooltip-placement="left"
 | 
			
		||||
                               ng-click="generatePassword()" ng-show="!readOnly"></i>
 | 
			
		||||
                            <i class="fa fa-lg fa-eye" uib-tooltip="Toggle Password" tooltip-placement="left"
 | 
			
		||||
                               password-viewer="#password"></i>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <label for="password">Password</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="password" id="password" name="Login.Password" ng-model="cipher.login.password"
 | 
			
		||||
                                   class="form-control monospaced" ng-readonly="readOnly" api-field
 | 
			
		||||
                                   autocomplete="new-password" />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Password" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-success="clipboardSuccess(e)" ngclipboard-error="clipboardError(e, true)"
 | 
			
		||||
                                        data-clipboard-text="{{cipher.login.password}}">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div password-meter="cipher.login.password" password-meter-username="cipher.login.username"
 | 
			
		||||
                         outer-class="xs" class="password-meter"></div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="totp">Authenticator Key (TOTP)</label>
 | 
			
		||||
                        <input type="text" id="totp" name="Login.Totp" ng-model="cipher.login.totp"
 | 
			
		||||
                               class="form-control monospaced" ng-readonly="readOnly" api-field />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6 totp-col">
 | 
			
		||||
                    <div totp="cipher.login.totp" id="verification-code" ng-if="useTotp"></div>
 | 
			
		||||
                    <div ng-if="!useTotp">
 | 
			
		||||
                        <a href="#" stop-click ng-click="showUpgrade()"><img src="images/totp-countdown.png" alt="" /></a>
 | 
			
		||||
                        <span class="label label-info clickable" ng-click="showUpgrade()">
 | 
			
		||||
                            {{fromOrg ? 'UPGRADE' : 'PREMIUM'}}
 | 
			
		||||
                        </span>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-repeat="u in cipher.login.uris" ng-if="cipher.login.uris && cipher.login.uris.length">
 | 
			
		||||
                <div class="row">
 | 
			
		||||
                    <div class="col-sm-7">
 | 
			
		||||
                        <div class="form-group" show-errors>
 | 
			
		||||
                            <label for="uri{{$index}}">URI {{$index + 1}}</label>
 | 
			
		||||
                            <div class="input-group">
 | 
			
		||||
                                <input type="text" id="uri{{$index}}" name="Login.Uris[{{$index}}].Uri"
 | 
			
		||||
                                       ng-model="u.uri" class="form-control"
 | 
			
		||||
                                       placeholder="http://..." ng-readonly="readOnly" api-field />
 | 
			
		||||
                                <span class="input-group-btn">
 | 
			
		||||
                                    <button class="btn btn-default btn-flat" type="button" uib-tooltip="Copy URI"
 | 
			
		||||
                                            tooltip-placement="left" ngclipboard ngclipboard-error="clipboardError(e)"
 | 
			
		||||
                                            data-clipboard-target="#uri{{$index}}">
 | 
			
		||||
                                        <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                    </button>
 | 
			
		||||
                                    <a href="{{u.uri}}" target="_blank" class="btn btn-default btn-flat"
 | 
			
		||||
                                       uib-tooltip="Go To Website" tooltip-placement="left">
 | 
			
		||||
                                        <i class="fa fa-share"></i>
 | 
			
		||||
                                    </a>
 | 
			
		||||
                                </span>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="col-sm-4">
 | 
			
		||||
                        <div class="form-group">
 | 
			
		||||
                            <label for="uri_match_{{$index}}">Match Detection</label>
 | 
			
		||||
                            <select id="uri_match_{{$index}}" name="Login.Uris[{{$index}}].Match"
 | 
			
		||||
                                    class="form-control" ng-model="u.matchValue" ng-change="uriMatchChanged(u)">
 | 
			
		||||
                                <option value="">Default</option>
 | 
			
		||||
                                <option value="0">Base domain</option>
 | 
			
		||||
                                <option value="1">Host</option>
 | 
			
		||||
                                <option value="2">Starts with</option>
 | 
			
		||||
                                <option value="4">Regular Expression</option>
 | 
			
		||||
                                <option value="3">Exact</option>
 | 
			
		||||
                                <option value="5">Never</option>
 | 
			
		||||
                            </select>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="col-sm-1">
 | 
			
		||||
                        <br class="hidden-xs" />
 | 
			
		||||
                        <a href="#" ng-click="removeUri(u)" stop-click>
 | 
			
		||||
                            <i class="fa fa-window-close-o fa-lg"></i>
 | 
			
		||||
                            <span class="visible-xs-inline">Remove URI</span>
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <hr class="visible-xs-block" />
 | 
			
		||||
            </div>
 | 
			
		||||
            <a href="#" ng-click="addUri()" stop-click>
 | 
			
		||||
                <i class="fa fa-plus-circle"></i> New URI
 | 
			
		||||
            </a>
 | 
			
		||||
            <br /><br />
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="cipher.type === constants.cipherType.card">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="name">Cardholder Name</label>
 | 
			
		||||
                        <input type="text" id="cardholderName" name="Card.CarholderName" ng-readonly="readOnly"
 | 
			
		||||
                               ng-model="cipher.card.cardholderName" class="form-control" api-field />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardBrand">Brand</label>
 | 
			
		||||
                        <select id="cardBrand" name="Card.Brand" ng-model="cipher.card.brand" class="form-control"
 | 
			
		||||
                                ng-readonly="readOnly" api-field>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="Visa">Visa</option>
 | 
			
		||||
                            <option value="Mastercard">Mastercard</option>
 | 
			
		||||
                            <option value="Amex">American Express</option>
 | 
			
		||||
                            <option value="Discover">Discover</option>
 | 
			
		||||
                            <option value="Diners Club">Diners Club</option>
 | 
			
		||||
                            <option value="JCB">JCB</option>
 | 
			
		||||
                            <option value="Maestro">Maestro</option>
 | 
			
		||||
                            <option value="UnionPay">UnionPay</option>
 | 
			
		||||
                            <option value="Other">Other</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardNumber">Number</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="cardNumber" name="Card.Number" ng-model="cipher.card.number"
 | 
			
		||||
                                   class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Number" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#cardNumber">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-3">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardExpMonth">Expiration Month</label>
 | 
			
		||||
                        <select id="cardExpMonth" name="Card.ExpMonth" ng-model="cipher.card.expMonth"
 | 
			
		||||
                                ng-readonly="readOnly" class="form-control" api-field>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="1">01 - January</option>
 | 
			
		||||
                            <option value="2">02 - February</option>
 | 
			
		||||
                            <option value="3">03 - March</option>
 | 
			
		||||
                            <option value="4">04 - April</option>
 | 
			
		||||
                            <option value="5">05 - May</option>
 | 
			
		||||
                            <option value="6">06 - June</option>
 | 
			
		||||
                            <option value="7">07 - July</option>
 | 
			
		||||
                            <option value="8">08 - August</option>
 | 
			
		||||
                            <option value="9">09 - September</option>
 | 
			
		||||
                            <option value="10">10 - October</option>
 | 
			
		||||
                            <option value="11">11 - November</option>
 | 
			
		||||
                            <option value="12">12 - December</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-3">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardExpYear">Expiration Year</label>
 | 
			
		||||
                        <input type="text" id="cardExpYear" name="Card.ExpYear" ng-readonly="readOnly"
 | 
			
		||||
                               ng-model="cipher.card.expYear" class="form-control" api-field placeholder="ex. 2019" />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardCode">Security Code</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="cardCode" name="Card.Code" ng-model="cipher.card.code"
 | 
			
		||||
                                   class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Code" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#cardCode">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="cipher.type === constants.cipherType.identity">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityTitle">Title</label>
 | 
			
		||||
                        <select id="identityTitle" name="Identity.Title" ng-model="cipher.identity.title" class="form-control"
 | 
			
		||||
                                ng-readonly="readOnly" api-field>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="Mr">Mr</option>
 | 
			
		||||
                            <option value="Mrs">Mrs</option>
 | 
			
		||||
                            <option value="Ms">Ms</option>
 | 
			
		||||
                            <option value="Dr">Dr</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityFirstName">First Name</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityFirstName" name="Identity.FirstName"
 | 
			
		||||
                                   ng-model="cipher.identity.firstName" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy First Name" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityFirstName">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityMiddleName">Middle Name</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityMiddleName" name="Identity.FirstName"
 | 
			
		||||
                                   ng-model="cipher.identity.middleName" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Middle Name" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityMiddleName">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityLastName">Last Name</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityLastName" name="Identity.LastName"
 | 
			
		||||
                                   ng-model="cipher.identity.lastName" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Last Name" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityLastName">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityUsername">Username</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityUsername" name="Identity.Username"
 | 
			
		||||
                                   ng-model="cipher.identity.username" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Username" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityUsername">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityCompany">Company</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityCompany" name="Identity.Company"
 | 
			
		||||
                                   ng-model="cipher.identity.company" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Company" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityCompany">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identitySSN">Social Security Number</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identitySSN" name="Identity.SSN"
 | 
			
		||||
                                   ng-model="cipher.identity.ssn" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy SSN" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identitySSN">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityPassportNumber">Passport Number</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityPassportNumber" name="Identity.PassportNumber"
 | 
			
		||||
                                   ng-model="cipher.identity.passportNumber" class="form-control" ng-readonly="readOnly"
 | 
			
		||||
                                   api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Passport Number" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityPassportNumber">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityLicenseNumber">License Number</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityLicenseNumber" name="Identity.LicenseNumber"
 | 
			
		||||
                                   ng-model="cipher.identity.licenseNumber" class="form-control" ng-readonly="readOnly"
 | 
			
		||||
                                   api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy License Number" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityLicenseNumber">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityEmail">Email</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityEmail" name="Identity.Email"
 | 
			
		||||
                                   ng-model="cipher.identity.email" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Email" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityEmail">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityPhone">Phone</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityPhone" name="Identity.Phone"
 | 
			
		||||
                                   ng-model="cipher.identity.phone" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Phone" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityPhone">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityAddress1">Address 1</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityAddress1" name="Identity.Address1"
 | 
			
		||||
                                   ng-model="cipher.identity.address1" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Address 1" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityAddress1">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityAddress2">Address 2</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityAddress2" name="Identity.Address2"
 | 
			
		||||
                                   ng-model="cipher.identity.address2" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Address 2" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityAddress2">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityAddress3">Address 3</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityAddress3" name="Identity.Address3"
 | 
			
		||||
                                   ng-model="cipher.identity.address3" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Address 3" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityAddress3">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityCity">City / Town</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityCity" name="Identity.City"
 | 
			
		||||
                                   ng-model="cipher.identity.city" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy City/Town" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityCity">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityState">State / Province</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityState" name="Identity.State"
 | 
			
		||||
                                   ng-model="cipher.identity.state" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy State/Province" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityState">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityPostalCode">Zip / Postal Code</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityPostalCode" name="Identity.PostalCode"
 | 
			
		||||
                                   ng-model="cipher.identity.postalCode" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Zip/Postal Code" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityPostalCode">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityCountry">Country</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityCountry" name="Identity.Country"
 | 
			
		||||
                                   ng-model="cipher.identity.country" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Country" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityCountry">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="cipher.type === constants.cipherType.secureNote">
 | 
			
		||||
            <!-- Nothing for now -->
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="notes">Notes</label>
 | 
			
		||||
            <textarea id="notes" name="Notes" class="form-control" ng-model="cipher.notes" api-field
 | 
			
		||||
                      ng-class="{'big-textarea': cipher.type === constants.cipherType.secureNote}"></textarea>
 | 
			
		||||
        </div>
 | 
			
		||||
        <hr />
 | 
			
		||||
        <h4><i class="fa fa-list-ul"></i> Custom Fields</h4>
 | 
			
		||||
        <div ng-repeat="field in cipher.fields">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-3">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <label for="field_name{{$index}}">Name</label>
 | 
			
		||||
                        <input type="text" id="field_name{{$index}}" name="Field.Name{{$index}}" class="form-control" ng-model="field.name" />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-3">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <label for="field_type{{$index}}">Type</label>
 | 
			
		||||
                        <select id="field_type{{$index}}" name="Field.Type{{$index}}" class="form-control" ng-model="field.type">
 | 
			
		||||
                            <option value="0">Text</option>
 | 
			
		||||
                            <option value="1">Hidden</option>
 | 
			
		||||
                            <option value="2">Boolean</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-5">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <div class="pull-right password-options" ng-if="field.type === '1'">
 | 
			
		||||
                            <i class="fa fa-lg fa-eye" uib-tooltip="Toggle Visibility" tooltip-placement="left"
 | 
			
		||||
                               password-viewer="#field_value{{$index}}"></i>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <label for="field_value{{$index}}">Value</label>
 | 
			
		||||
                        <div class="input-group" ng-if="field.type !== '2'">
 | 
			
		||||
                            <input ng-attr-type="{{field.type === '0' ? 'text' : 'password'}}" id="field_value{{$index}}"
 | 
			
		||||
                                   name="Field.Value{{$index}}" class="form-control"
 | 
			
		||||
                                   ng-class="{'monospaced': field.type !== '0'}" ng-model="field.value" />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Value" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-success="clipboardSuccess(e)" ngclipboard-error="clipboardError(e, true)"
 | 
			
		||||
                                        data-clipboard-text="{{field.value}}">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div ng-if="field.type === '2'">
 | 
			
		||||
                            <input type="checkbox" id="field_value{{$index}}" name="Field.Value{{$index}}" ng-model="field.value"
 | 
			
		||||
                                   data-ng-true-value="'true'" />
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-1">
 | 
			
		||||
                    <br class="hidden-xs" />
 | 
			
		||||
                    <a href="#" ng-click="removeField(field)" stop-click>
 | 
			
		||||
                        <i class="fa fa-window-close-o fa-lg"></i>
 | 
			
		||||
                        <span class="visible-xs-inline">Remove Custom Field</span>
 | 
			
		||||
                    </a>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <hr class="visible-xs-block" />
 | 
			
		||||
        </div>
 | 
			
		||||
        <a href="#" ng-click="addField()" stop-click>
 | 
			
		||||
            <i class="fa fa-plus-circle"></i> New Custom Field
 | 
			
		||||
        </a>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
        <button type="button" ng-if="!hideFavorite" class="btn btn-link pull-right" ng-click="toggleFavorite()"
 | 
			
		||||
                uib-tooltip="Toggle Favorite" tooltip-placement="left">
 | 
			
		||||
            <i class="fa fa-lg" ng-class="cipher.favorite ? 'fa-star' : 'fa-star-o'"></i>
 | 
			
		||||
            <span class="sr-only">Toggle Favorite</span>
 | 
			
		||||
        </button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,24 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title" id="addFolderModelLabel"><i class="fa fa-folder"></i> Add New Folder</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="addFolderForm" ng-submit="addFolderForm.$valid && save(folder)" api-form="savePromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="addFolderForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in addFolderForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="name">Name</label> <span>*</span>
 | 
			
		||||
            <input type="text" id="name" name="Name" ng-model="folder.name" class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="addFolderForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="addFolderForm.$loading"></i>Submit
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,75 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-paperclip"></i> Secure Attachments <small>{{cipher.name}}</small>
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && save(form)" api-form="savePromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div ng-if="loading">
 | 
			
		||||
            Loading...
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!loading && !cipher.attachments.length">
 | 
			
		||||
            There are no attachments for this item.
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="table-responsive" ng-if="cipher.attachments.length" style="margin: 0;">
 | 
			
		||||
            <table class="table table-striped table-hover table-vmiddle" style="margin: 0;">
 | 
			
		||||
                <tbody>
 | 
			
		||||
                    <tr ng-repeat="attachment in cipher.attachments | orderBy: ['fileName']">
 | 
			
		||||
                        <td style="width: 70px;">
 | 
			
		||||
                            <div class="btn-group" data-append-to=".modal">
 | 
			
		||||
                                <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown">
 | 
			
		||||
                                    <i class="fa fa-cog"></i> <span class="caret"></span>
 | 
			
		||||
                                </button>
 | 
			
		||||
                                <ul class="dropdown-menu">
 | 
			
		||||
                                    <li>
 | 
			
		||||
                                        <a href="#" stop-click ng-click="download(attachment)">
 | 
			
		||||
                                            <i class="fa fa-fw fa-download"></i> Download
 | 
			
		||||
                                        </a>
 | 
			
		||||
                                        <a href="#" stop-click ng-click="remove(attachment)" class="text-red"
 | 
			
		||||
                                           ng-show="!readOnly">
 | 
			
		||||
                                            <i class="fa fa-fw fa-trash"></i> Delete
 | 
			
		||||
                                        </a>
 | 
			
		||||
                                    </li>
 | 
			
		||||
                                </ul>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </td>
 | 
			
		||||
                        <td>
 | 
			
		||||
                            <a href="#" stop-click ng-click="download(attachment)">{{attachment.fileName}}</a>
 | 
			
		||||
                            <i class="fa fa-spinner fa-spin text-muted" ng-if="attachment.loading"></i>
 | 
			
		||||
                        </td>
 | 
			
		||||
                        <td style="width: 90px; min-width: 90px;">
 | 
			
		||||
                            {{attachment.size}}
 | 
			
		||||
                        </td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </tbody>
 | 
			
		||||
            </table>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!readOnly">
 | 
			
		||||
            <hr />
 | 
			
		||||
            <h4>Add New Attachment</h4>
 | 
			
		||||
            <div class="callout callout-warning" ng-if="!canUseAttachments">
 | 
			
		||||
                <h4>Premium Membership Required</h4>
 | 
			
		||||
                <p>Premium membership is required to use this feature.</p>
 | 
			
		||||
                <button type="button" class="btn btn-default btn-flat" ng-click="showUpgrade()">Learn More</button>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
                <h4>Errors have occurred</h4>
 | 
			
		||||
                <ul>
 | 
			
		||||
                    <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="form-group" show-error ng-if="canUseAttachments">
 | 
			
		||||
                <label for="file" class="sr-only">File</label>
 | 
			
		||||
                <input type="file" id="file" name="file" />
 | 
			
		||||
                <p class="help-block">Maximum size per file is 100 MB.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading" ng-if="!readOnly && canUseAttachments">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Save
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,55 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-cubes"></i> Collections <small>{{cipher.name}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit()" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Edit the collections that this item is being shared with.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="loadingCollections && !collections.length">
 | 
			
		||||
            Loading...
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!loadingCollections && !collections.length" class="callout callout-default">
 | 
			
		||||
            <p>No collections to manage.</p>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="table-responsive" ng-show="collections.length" style="margin: 0;">
 | 
			
		||||
            <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                <thead>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                        <th style="width: 40px;">
 | 
			
		||||
                            <input type="checkbox"
 | 
			
		||||
                                   ng-checked="allSelected()"
 | 
			
		||||
                                   ng-click="toggleCollectionSelectionAll($event)">
 | 
			
		||||
                        </th>
 | 
			
		||||
                        <th>Name</th>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </thead>
 | 
			
		||||
                <tbody>
 | 
			
		||||
                    <tr ng-repeat="collection in collections | orderBy: ['name']">
 | 
			
		||||
                        <td valign="middle">
 | 
			
		||||
                            <input type="checkbox"
 | 
			
		||||
                                   name="selectedCollections[]"
 | 
			
		||||
                                   value="{{collection.id}}"
 | 
			
		||||
                                   ng-checked="collectionSelected(collection)"
 | 
			
		||||
                                   ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                        </td>
 | 
			
		||||
                        <td valign="middle" ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                            {{collection.name}}
 | 
			
		||||
                        </td>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                </tbody>
 | 
			
		||||
            </table>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading" ng-show="collections.length">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Save
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,621 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa {{cipher.icon}}"></i> Item Information <small>{{cipher.name}}</small>
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && save(cipher)" api-form="savePromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="row">
 | 
			
		||||
            <div class="col-sm-6">
 | 
			
		||||
                <div class="form-group" show-errors>
 | 
			
		||||
                    <label for="name">Name</label> <span>*</span>
 | 
			
		||||
                    <input type="text" id="name" name="Name" ng-model="cipher.name" class="form-control"
 | 
			
		||||
                           ng-readonly="readOnly" required api-field />
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="col-sm-6" ng-if="!hideFolders">
 | 
			
		||||
                <div class="form-group" show-errors>
 | 
			
		||||
                    <label for="folder">Folder</label>
 | 
			
		||||
                    <select id="folder" name="FolderId" ng-model="cipher.folderId" class="form-control" api-field>
 | 
			
		||||
                        <option ng-repeat="folder in folders | orderBy: folderSort" value="{{folder.id}}">
 | 
			
		||||
                            {{folder.name}}
 | 
			
		||||
                        </option>
 | 
			
		||||
                    </select>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        <div ng-if="cipher.type === constants.cipherType.login">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="username">Username</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="username" name="Login.Username" ng-model="cipher.login.username"
 | 
			
		||||
                                   class="form-control monospaced" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Username" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)"
 | 
			
		||||
                                        data-clipboard-target="#username">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors style="margin-bottom: 5px;">
 | 
			
		||||
                        <div class="pull-right password-options">
 | 
			
		||||
                            <i class="fa fa-lg fa-refresh" uib-tooltip="Generate Password" tooltip-placement="left"
 | 
			
		||||
                               ng-click="generatePassword()" ng-show="!readOnly"></i>
 | 
			
		||||
                            <i class="fa fa-lg fa-eye" uib-tooltip="Toggle Password" tooltip-placement="left"
 | 
			
		||||
                               password-viewer="#password"></i>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <label for="password">Password</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="password" id="password" name="Login.Password" ng-model="cipher.login.password"
 | 
			
		||||
                                   class="form-control monospaced" ng-readonly="readOnly" api-field
 | 
			
		||||
                                   autocomplete="new-password" />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Password" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-success="clipboardSuccess(e)" ngclipboard-error="clipboardError(e, true)"
 | 
			
		||||
                                        data-clipboard-text="{{cipher.login.password}}">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div password-meter="cipher.login.password" password-meter-username="cipher.login.username"
 | 
			
		||||
                         outer-class="xs" class="password-meter"></div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="totp">Authenticator Key (TOTP)</label>
 | 
			
		||||
                        <input type="text" id="totp" name="Login.Totp" ng-model="cipher.login.totp"
 | 
			
		||||
                               class="form-control monospaced" ng-readonly="readOnly" api-field />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6 totp-col">
 | 
			
		||||
                    <div totp="cipher.login.totp" id="verification-code" ng-if="useTotp"></div>
 | 
			
		||||
                    <div ng-if="!useTotp">
 | 
			
		||||
                        <a href="#" stop-click ng-click="showUpgrade()"><img src="images/totp-countdown.png" alt="" /></a>
 | 
			
		||||
                        <span class="label label-info clickable" ng-click="showUpgrade()">
 | 
			
		||||
                            {{fromOrg ? 'UPGRADE' : 'PREMIUM'}}
 | 
			
		||||
                        </span>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-repeat="u in cipher.login.uris" ng-if="cipher.login.uris && cipher.login.uris.length">
 | 
			
		||||
                <div class="row">
 | 
			
		||||
                    <div class="col-sm-7">
 | 
			
		||||
                        <div class="form-group" show-errors>
 | 
			
		||||
                            <label for="uri{{$index}}">URI {{$index + 1}}</label>
 | 
			
		||||
                            <div class="input-group">
 | 
			
		||||
                                <input type="text" id="uri{{$index}}" name="Login.Uris[{{$index}}].Uri"
 | 
			
		||||
                                       ng-model="u.uri" class="form-control"
 | 
			
		||||
                                       placeholder="http://..." ng-readonly="readOnly" api-field />
 | 
			
		||||
                                <span class="input-group-btn">
 | 
			
		||||
                                    <button class="btn btn-default btn-flat" type="button" uib-tooltip="Copy URI"
 | 
			
		||||
                                            tooltip-placement="left" ngclipboard ngclipboard-error="clipboardError(e)"
 | 
			
		||||
                                            data-clipboard-target="#uri{{$index}}">
 | 
			
		||||
                                        <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                    </button>
 | 
			
		||||
                                    <a href="{{u.uri}}" target="_blank" class="btn btn-default btn-flat"
 | 
			
		||||
                                       uib-tooltip="Go To Website" tooltip-placement="left">
 | 
			
		||||
                                        <i class="fa fa-share"></i>
 | 
			
		||||
                                    </a>
 | 
			
		||||
                                </span>
 | 
			
		||||
                            </div>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="col-sm-4">
 | 
			
		||||
                        <div class="form-group">
 | 
			
		||||
                            <label for="uri_match_{{$index}}">Match Detection</label>
 | 
			
		||||
                            <select id="uri_match_{{$index}}" name="Login.Uris[{{$index}}].Match" ng-disabled="readOnly"
 | 
			
		||||
                                    class="form-control" ng-model="u.matchValue" ng-change="uriMatchChanged(u)">
 | 
			
		||||
                                <option value="">Default</option>
 | 
			
		||||
                                <option value="0">Base domain</option>
 | 
			
		||||
                                <option value="1">Host</option>
 | 
			
		||||
                                <option value="2">Starts with</option>
 | 
			
		||||
                                <option value="4">Regular Expression</option>
 | 
			
		||||
                                <option value="3">Exact</option>
 | 
			
		||||
                                <option value="5">Never</option>
 | 
			
		||||
                            </select>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                    <div class="col-sm-1" ng-if="!readOnly">
 | 
			
		||||
                        <br class="hidden-xs" />
 | 
			
		||||
                        <a href="#" ng-click="removeUri(u)" stop-click>
 | 
			
		||||
                            <i class="fa fa-window-close-o fa-lg"></i>
 | 
			
		||||
                            <span class="visible-xs-inline">Remove URI</span>
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <hr class="visible-xs-block" />
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-if="!readOnly">
 | 
			
		||||
                <a href="#" ng-click="addUri()" stop-click>
 | 
			
		||||
                    <i class="fa fa-plus-circle"></i> New URI
 | 
			
		||||
                </a>
 | 
			
		||||
                <br /><br />
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="cipher.type === constants.cipherType.card">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="name">Cardholder Name</label>
 | 
			
		||||
                        <input type="text" id="cardholderName" name="Card.CarholderName" ng-readonly="readOnly"
 | 
			
		||||
                               ng-model="cipher.card.cardholderName" class="form-control" api-field />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardBrand">Brand</label>
 | 
			
		||||
                        <select id="cardBrand" name="Card.Brand" ng-model="cipher.card.brand" class="form-control"
 | 
			
		||||
                                ng-readonly="readOnly" api-field>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="Visa">Visa</option>
 | 
			
		||||
                            <option value="Mastercard">Mastercard</option>
 | 
			
		||||
                            <option value="Amex">American Express</option>
 | 
			
		||||
                            <option value="Discover">Discover</option>
 | 
			
		||||
                            <option value="Diners Club">Diners Club</option>
 | 
			
		||||
                            <option value="JCB">JCB</option>
 | 
			
		||||
                            <option value="Maestro">Maestro</option>
 | 
			
		||||
                            <option value="UnionPay">UnionPay</option>
 | 
			
		||||
                            <option value="Other">Other</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardNumber">Number</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="cardNumber" name="Card.Number" ng-model="cipher.card.number"
 | 
			
		||||
                                   class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Number" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#cardNumber">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-3">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardExpMonth">Expiration Month</label>
 | 
			
		||||
                        <select id="cardExpMonth" name="Card.ExpMonth" ng-model="cipher.card.expMonth"
 | 
			
		||||
                                ng-readonly="readOnly" class="form-control" api-field>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="1">01 - January</option>
 | 
			
		||||
                            <option value="2">02 - February</option>
 | 
			
		||||
                            <option value="3">03 - March</option>
 | 
			
		||||
                            <option value="4">04 - April</option>
 | 
			
		||||
                            <option value="5">05 - May</option>
 | 
			
		||||
                            <option value="6">06 - June</option>
 | 
			
		||||
                            <option value="7">07 - July</option>
 | 
			
		||||
                            <option value="8">08 - August</option>
 | 
			
		||||
                            <option value="9">09 - September</option>
 | 
			
		||||
                            <option value="10">10 - October</option>
 | 
			
		||||
                            <option value="11">11 - November</option>
 | 
			
		||||
                            <option value="12">12 - December</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-3">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardExpYear">Expiration Year</label>
 | 
			
		||||
                        <input type="text" id="cardExpYear" name="Card.ExpYear" ng-readonly="readOnly"
 | 
			
		||||
                               ng-model="cipher.card.expYear" class="form-control" api-field placeholder="ex. 2019" />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="cardCode">Security Code</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="cardCode" name="Card.Code" ng-model="cipher.card.code"
 | 
			
		||||
                                   class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Code" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#cardCode">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="cipher.type === constants.cipherType.identity">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityTitle">Title</label>
 | 
			
		||||
                        <select id="identityTitle" name="Identity.Title" ng-model="cipher.identity.title" class="form-control"
 | 
			
		||||
                                ng-readonly="readOnly" api-field>
 | 
			
		||||
                            <option value="">-- Select --</option>
 | 
			
		||||
                            <option value="Mr">Mr</option>
 | 
			
		||||
                            <option value="Mrs">Mrs</option>
 | 
			
		||||
                            <option value="Ms">Ms</option>
 | 
			
		||||
                            <option value="Dr">Dr</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityFirstName">First Name</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityFirstName" name="Identity.FirstName"
 | 
			
		||||
                                   ng-model="cipher.identity.firstName" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy First Name" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityFirstName">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityMiddleName">Middle Name</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityMiddleName" name="Identity.FirstName"
 | 
			
		||||
                                   ng-model="cipher.identity.middleName" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Middle Name" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityMiddleName">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityLastName">Last Name</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityLastName" name="Identity.LastName"
 | 
			
		||||
                                   ng-model="cipher.identity.lastName" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Last Name" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityLastName">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityUsername">Username</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityUsername" name="Identity.Username"
 | 
			
		||||
                                   ng-model="cipher.identity.username" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Username" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityUsername">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityCompany">Company</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityCompany" name="Identity.Company"
 | 
			
		||||
                                   ng-model="cipher.identity.company" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Company" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityCompany">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identitySSN">Social Security Number</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identitySSN" name="Identity.SSN"
 | 
			
		||||
                                   ng-model="cipher.identity.ssn" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy SSN" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identitySSN">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityPassportNumber">Passport Number</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityPassportNumber" name="Identity.PassportNumber"
 | 
			
		||||
                                   ng-model="cipher.identity.passportNumber" class="form-control" ng-readonly="readOnly"
 | 
			
		||||
                                   api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Passport Number" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityPassportNumber">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-4">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityLicenseNumber">License Number</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityLicenseNumber" name="Identity.LicenseNumber"
 | 
			
		||||
                                   ng-model="cipher.identity.licenseNumber" class="form-control" ng-readonly="readOnly"
 | 
			
		||||
                                   api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy License Number" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityLicenseNumber">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityEmail">Email</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityEmail" name="Identity.Email"
 | 
			
		||||
                                   ng-model="cipher.identity.email" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Email" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityEmail">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityPhone">Phone</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityPhone" name="Identity.Phone"
 | 
			
		||||
                                   ng-model="cipher.identity.phone" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Phone" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityPhone">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityAddress1">Address 1</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityAddress1" name="Identity.Address1"
 | 
			
		||||
                                   ng-model="cipher.identity.address1" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Address 1" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityAddress1">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityAddress2">Address 2</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityAddress2" name="Identity.Address2"
 | 
			
		||||
                                   ng-model="cipher.identity.address2" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Address 2" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityAddress2">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityAddress3">Address 3</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityAddress3" name="Identity.Address3"
 | 
			
		||||
                                   ng-model="cipher.identity.address3" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Address 3" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityAddress3">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityCity">City / Town</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityCity" name="Identity.City"
 | 
			
		||||
                                   ng-model="cipher.identity.city" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy City/Town" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityCity">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityState">State / Province</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityState" name="Identity.State"
 | 
			
		||||
                                   ng-model="cipher.identity.state" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy State/Province" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityState">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityPostalCode">Zip / Postal Code</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityPostalCode" name="Identity.PostalCode"
 | 
			
		||||
                                   ng-model="cipher.identity.postalCode" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Zip/Postal Code" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityPostalCode">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-6">
 | 
			
		||||
                    <div class="form-group" show-errors>
 | 
			
		||||
                        <label for="identityCountry">Country</label>
 | 
			
		||||
                        <div class="input-group">
 | 
			
		||||
                            <input type="text" id="identityCountry" name="Identity.Country"
 | 
			
		||||
                                   ng-model="cipher.identity.country" class="form-control" ng-readonly="readOnly" api-field />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Country" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-error="clipboardError(e)" data-clipboard-target="#identityCountry">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="cipher.type === constants.cipherType.secureNote">
 | 
			
		||||
            <!-- Nothing for now -->
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="notes">Notes</label>
 | 
			
		||||
            <textarea id="notes" name="Notes" class="form-control" ng-model="cipher.notes"
 | 
			
		||||
                      ng-class="{'big-textarea': cipher.type === constants.cipherType.secureNote}"
 | 
			
		||||
                      ng-readonly="readOnly" api-field></textarea>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="!readOnly || (cipher.fields && cipher.fields.length)">
 | 
			
		||||
            <hr />
 | 
			
		||||
            <h4><i class="fa fa-list-ul"></i> Custom Fields</h4>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-repeat="field in cipher.fields">
 | 
			
		||||
            <div class="row">
 | 
			
		||||
                <div class="col-sm-3">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <label for="field_name{{$index}}">Name</label>
 | 
			
		||||
                        <input type="text" id="field_name{{$index}}" class="form-control" ng-model="field.name"
 | 
			
		||||
                               ng-readonly="readOnly" />
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-3">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <label for="field_type{{$index}}">Type</label>
 | 
			
		||||
                        <select id="field_type{{$index}}" class="form-control" ng-model="field.type" ng-disabled="readOnly">
 | 
			
		||||
                            <option value="0">Text</option>
 | 
			
		||||
                            <option value="1">Hidden</option>
 | 
			
		||||
                            <option value="2">Boolean</option>
 | 
			
		||||
                        </select>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-5">
 | 
			
		||||
                    <div class="form-group">
 | 
			
		||||
                        <div class="pull-right password-options" ng-if="field.type === '1'">
 | 
			
		||||
                            <i class="fa fa-lg fa-eye" uib-tooltip="Toggle Visibility" tooltip-placement="left"
 | 
			
		||||
                               password-viewer="#field_value{{$index}}"></i>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <label for="field_value{{$index}}">Value</label>
 | 
			
		||||
                        <div class="input-group" ng-if="field.type !== '2'">
 | 
			
		||||
                            <input ng-attr-type="{{field.type === '0' ? 'text' : 'password'}}" id="field_value{{$index}}"
 | 
			
		||||
                                   class="form-control" ng-class="{'monospaced': field.type !== '0'}" ng-model="field.value"
 | 
			
		||||
                                   ng-readonly="readOnly" />
 | 
			
		||||
                            <span class="input-group-btn" uib-tooltip="Copy Value" tooltip-placement="left">
 | 
			
		||||
                                <button class="btn btn-default btn-flat" type="button" ngclipboard
 | 
			
		||||
                                        ngclipboard-success="clipboardSuccess(e)" ngclipboard-error="clipboardError(e, true)"
 | 
			
		||||
                                        data-clipboard-text="{{field.value}}">
 | 
			
		||||
                                    <i class="fa fa-clipboard"></i>
 | 
			
		||||
                                </button>
 | 
			
		||||
                            </span>
 | 
			
		||||
                        </div>
 | 
			
		||||
                        <div ng-if="field.type === '2'">
 | 
			
		||||
                            <input type="checkbox" id="field_value{{$index}}" ng-model="field.value"
 | 
			
		||||
                                   data-ng-true-value="'true'" ng-disabled="readOnly" />
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="col-sm-1" ng-if="!readOnly">
 | 
			
		||||
                    <br class="hidden-xs" />
 | 
			
		||||
                    <a href="#" ng-click="removeField(field)" stop-click>
 | 
			
		||||
                        <i class="fa fa-window-close-o fa-lg"></i>
 | 
			
		||||
                        <span class="visible-xs-inline">Remove Custom Field</span>
 | 
			
		||||
                    </a>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
            <hr class="visible-xs-block" />
 | 
			
		||||
        </div>
 | 
			
		||||
        <a href="#" ng-click="addField()" stop-click ng-if="!readOnly">
 | 
			
		||||
            <i class="fa fa-plus-circle"></i> New Custom Field
 | 
			
		||||
        </a>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Save
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
        <button type="button" class="btn btn-link pull-right" ng-click="delete()" uib-tooltip="Delete"
 | 
			
		||||
                tooltip-placement="left" ng-disabled="readOnly">
 | 
			
		||||
            <i class="fa fa-trash fa-lg"></i>
 | 
			
		||||
            <span class="sr-only">Delete</span>
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" ng-if="!hideFavorite" class="btn btn-link pull-right" ng-click="toggleFavorite()"
 | 
			
		||||
                uib-tooltip="Toggle Favorite" tooltip-placement="left">
 | 
			
		||||
            <i class="fa fa-lg" ng-class="cipher.favorite ? 'fa-star' : 'fa-star-o'"></i>
 | 
			
		||||
            <span class="sr-only">Toggle Favorite</span>
 | 
			
		||||
        </button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,24 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title" id="editFolderModelLabel"><i class="fa fa-folder"></i> Edit Folder <small>{{folder.name}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="editFolderForm" ng-submit="editFolderForm.$valid && save(folder)" api-form="savePromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="editFolderForm.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in editFolderForm.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="name">Name</label> <span>*</span>
 | 
			
		||||
            <input type="text" id="name" name="Name" ng-model="folder.name" class="form-control" required api-field />
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="editFolderForm.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="editFolderForm.$loading"></i>Save
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,34 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title">
 | 
			
		||||
        <i class="fa fa-share"></i> Move Items
 | 
			
		||||
    </h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && save()" api-form="savePromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <p>
 | 
			
		||||
            Select a folder that you would like to move the <b>{{count}}</b> selected
 | 
			
		||||
            <span ng-pluralize count="count" when="{'1': 'item', 'other': 'items'}"></span> to.
 | 
			
		||||
        </p>
 | 
			
		||||
        <div class="form-group" show-errors>
 | 
			
		||||
            <label for="folder">Folder</label>
 | 
			
		||||
            <select id="folder" name="FolderId" ng-model="folderId" class="form-control" api-field>
 | 
			
		||||
                <option ng-repeat="folder in folders | orderBy: folderSort" value="{{folder.id}}">
 | 
			
		||||
                    {{folder.name}}
 | 
			
		||||
                </option>
 | 
			
		||||
            </select>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Save
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,75 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-share-alt"></i> Share Item <small>{{cipher.name}}</small></h4>
 | 
			
		||||
</div>
 | 
			
		||||
<form name="form" ng-submit="form.$valid && submit(model)" api-form="submitPromise" autocomplete="off">
 | 
			
		||||
    <div class="modal-body">
 | 
			
		||||
        <p>Choose an organization that you wish to share this item with.</p>
 | 
			
		||||
        <div class="callout callout-danger validation-errors" ng-show="form.$errors">
 | 
			
		||||
            <h4>Errors have occurred</h4>
 | 
			
		||||
            <ul>
 | 
			
		||||
                <li ng-repeat="e in form.$errors">{{e}}</li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
        <p ng-show="loading">Loading...</p>
 | 
			
		||||
        <div ng-show="!loading && !organizations.length" class="callout callout-default">
 | 
			
		||||
            <h4><i class="fa fa-info-circle"></i> No Organizations</h4>
 | 
			
		||||
            <p>You do not belong to any organizations. Organizations allow you to share items with other Bitwarden users.</p>
 | 
			
		||||
            <a ng-click="createOrg()" class="btn btn-default btn-flat">
 | 
			
		||||
                Create an Organization
 | 
			
		||||
            </a>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-show="!loading && organizations.length">
 | 
			
		||||
            <div class="form-group">
 | 
			
		||||
                <label for="organization">Organization</label> <span>*</span>
 | 
			
		||||
                <select id="organization" name="Organization" ng-model="model.organizationId" class="form-control"
 | 
			
		||||
                        ng-change="orgChanged()">
 | 
			
		||||
                    <option ng-repeat="org in organizations | orderBy: ['name']" value="{{org.id}}">{{org.name}}</option>
 | 
			
		||||
                </select>
 | 
			
		||||
            </div>
 | 
			
		||||
            <h4 ng-hide="!loadingCollections && !orgCollections.length">Collection Access</h4>
 | 
			
		||||
            <div ng-show="loadingCollections && !orgCollections.length">
 | 
			
		||||
                <p>Loading...</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div ng-show="!loadingCollections && !orgCollections.length" class="callout callout-default">
 | 
			
		||||
                <h4><i class="fa fa-info-circle"></i> No Collections</h4>
 | 
			
		||||
                <p>You do not have write access to any collections for this organization.</p>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="table-responsive" ng-show="orgCollections.length" style="margin: 0;">
 | 
			
		||||
                <table class="table table-striped table-hover" style="margin: 0;">
 | 
			
		||||
                    <thead>
 | 
			
		||||
                        <tr>
 | 
			
		||||
                            <th style="width: 40px;">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       ng-checked="allSelected()"
 | 
			
		||||
                                       ng-click="toggleCollectionSelectionAll($event)">
 | 
			
		||||
                            </th>
 | 
			
		||||
                            <th>Name</th>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </thead>
 | 
			
		||||
                    <tbody>
 | 
			
		||||
                        <tr ng-repeat="collection in orgCollections =
 | 
			
		||||
                        (collections | filter: { organizationId: model.organizationId } | orderBy: ['name'])">
 | 
			
		||||
                            <td valign="middle">
 | 
			
		||||
                                <input type="checkbox"
 | 
			
		||||
                                       name="selectedCollections[]"
 | 
			
		||||
                                       value="{{collection.id}}"
 | 
			
		||||
                                       ng-checked="collectionSelected(collection)"
 | 
			
		||||
                                       ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                            </td>
 | 
			
		||||
                            <td valign="middle" ng-click="toggleCollectionSelection(collection.id)">
 | 
			
		||||
                                {{collection.name}}
 | 
			
		||||
                            </td>
 | 
			
		||||
                        </tr>
 | 
			
		||||
                    </tbody>
 | 
			
		||||
                </table>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="modal-footer">
 | 
			
		||||
        <button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
 | 
			
		||||
            <i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Save
 | 
			
		||||
        </button>
 | 
			
		||||
        <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
    </div>
 | 
			
		||||
</form>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,10 +0,0 @@
 | 
			
		|||
<div class="wrapper toast-target">
 | 
			
		||||
    <div ui-view></div>
 | 
			
		||||
 | 
			
		||||
    <footer class="main-footer">
 | 
			
		||||
        <div class="pull-right hidden-xs">
 | 
			
		||||
            <b>Version</b> {{main.version}}
 | 
			
		||||
        </div>
 | 
			
		||||
        <strong>Copyright © <span ng-bind="currentYear"></span></strong>, 8bit Solutions LLC
 | 
			
		||||
    </footer>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,2 +0,0 @@
 | 
			
		|||
<div class="toast-target" ui-view>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,110 +0,0 @@
 | 
			
		|||
<header class="main-header" ng-controller="topNavController as topNav">
 | 
			
		||||
    <a ui-sref="backend.user.vault" class="logo">
 | 
			
		||||
        <span class="logo-mini"><i class="fa fa-shield"></i></span>
 | 
			
		||||
        <span class="logo-lg"><i class="fa fa-shield"></i> <b>bit</b>warden</span>
 | 
			
		||||
    </a>
 | 
			
		||||
    <nav class="navbar navbar-static-top" role="navigation">
 | 
			
		||||
        <a class="sidebar-toggle" data-toggle="offcanvas" role="button">
 | 
			
		||||
            <span class="sr-only">Toggle navigation</span>
 | 
			
		||||
            <span class="icon-bar"></span>
 | 
			
		||||
            <span class="icon-bar"></span>
 | 
			
		||||
            <span class="icon-bar"></span>
 | 
			
		||||
        </a>
 | 
			
		||||
        <div class="navbar-custom-menu">
 | 
			
		||||
            <ul class="nav navbar-nav">
 | 
			
		||||
                <li><a ui-sref="frontend.logout">Log Out</a></li>
 | 
			
		||||
                <li class="control-sidebar-show">
 | 
			
		||||
                    <a href="#" stop-click ng-click="toggleControlSidebar()"><i class="fa fa-bars"></i></a>
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
    </nav>
 | 
			
		||||
</header>
 | 
			
		||||
 | 
			
		||||
<aside class="main-sidebar" ng-controller="sideNavController">
 | 
			
		||||
    <section class="sidebar">
 | 
			
		||||
        <div class="user-panel">
 | 
			
		||||
            <div class="pull-left image">
 | 
			
		||||
                <letter-avatar data="{{orgProfile.name}}" avclass="img-responsive img-rounded" round="false"></letter-avatar>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="pull-left info">
 | 
			
		||||
                <p>{{orgProfile.name}}</p>
 | 
			
		||||
                <a ui-sref="backend.user.vault"><i class="fa fa-arrow-left"></i> Return to my vault</a>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <ul class="sidebar-menu">
 | 
			
		||||
            <li class="header">MY ORGANIZATION</li>
 | 
			
		||||
            <li ng-class="{active: $state.is('backend.org.dashboard')}">
 | 
			
		||||
                <a ui-sref="backend.org.dashboard({orgId: params.orgId})">
 | 
			
		||||
                    <i class="fa fa-dashboard fa-fw"></i> <span>Dashboard</span>
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li ng-class="{active: $state.is('backend.org.vault')}">
 | 
			
		||||
                <a ui-sref="backend.org.vault({orgId: params.orgId})">
 | 
			
		||||
                    <i class="fa fa-lock fa-fw"></i> <span>Vault</span>
 | 
			
		||||
                </a>
 | 
			
		||||
                <ul class="treeview-menu" ng-class="{'menu-open': $state.includes('backend.org.vault')}">
 | 
			
		||||
                    <li>
 | 
			
		||||
                        <a href="#" stop-click ng-click="addOrganizationCipher()">
 | 
			
		||||
                            <i class="fa fa-plus-circle fa-fw"></i> New Item
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li ng-class="{active: $state.is('backend.org.collections')}">
 | 
			
		||||
                <a ui-sref="backend.org.collections({orgId: params.orgId})">
 | 
			
		||||
                    <i class="fa fa-cubes fa-fw"></i> <span>Collections</span>
 | 
			
		||||
                </a>
 | 
			
		||||
                <ul class="treeview-menu" ng-class="{'menu-open': $state.includes('backend.org.collections')}">
 | 
			
		||||
                    <li>
 | 
			
		||||
                        <a href="#" stop-click ng-click="addOrganizationCollection()">
 | 
			
		||||
                            <i class="fa fa-plus-circle fa-fw"></i> New Collection
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li ng-class="{active: $state.is('backend.org.people')}">
 | 
			
		||||
                <a ui-sref="backend.org.people({orgId: params.orgId})">
 | 
			
		||||
                    <i class="fa fa-users fa-fw"></i> <span>People</span>
 | 
			
		||||
                </a>
 | 
			
		||||
                <ul class="treeview-menu" ng-class="{'menu-open': $state.includes('backend.org.people')}">
 | 
			
		||||
                    <li>
 | 
			
		||||
                        <a href="#" stop-click ng-click="inviteOrganizationUser()">
 | 
			
		||||
                            <i class="fa fa-plus-circle fa-fw"></i> Invite a User
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li ng-class="{active: $state.is('backend.org.groups')}" ng-if="orgProfile.useGroups">
 | 
			
		||||
                <a ui-sref="backend.org.groups({orgId: params.orgId})">
 | 
			
		||||
                    <i class="fa fa-sitemap fa-fw"></i> <span>Groups</span>
 | 
			
		||||
                </a>
 | 
			
		||||
                <ul class="treeview-menu" ng-class="{'menu-open': $state.includes('backend.org.groups')}">
 | 
			
		||||
                    <li>
 | 
			
		||||
                        <a href="#" stop-click ng-click="addOrganizationGroup()">
 | 
			
		||||
                            <i class="fa fa-plus-circle fa-fw"></i> New Group
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li ng-class="{active: $state.is('backend.org.events')}" ng-if="orgProfile.useEvents">
 | 
			
		||||
                <a ui-sref="backend.org.events({orgId: params.orgId})">
 | 
			
		||||
                    <i class="fa fa-file-text-o fa-fw"></i> <span>Event Logs</span>
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li ng-class="{active: $state.is('backend.org.billing')}" ng-if="isOrgOwner(orgProfile)">
 | 
			
		||||
                <a ui-sref="backend.org.billing({orgId: params.orgId})">
 | 
			
		||||
                    <i class="fa fa-credit-card fa-fw"></i> Billing & Licensing
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li ng-class="{active: $state.is('backend.org.settings')}" ng-if="isOrgOwner(orgProfile)">
 | 
			
		||||
                <a ui-sref="backend.org.settings({orgId: params.orgId})">
 | 
			
		||||
                    <i class="fa fa-gears fa-fw"></i> <span>Settings</span>
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
        </ul>
 | 
			
		||||
    </section>
 | 
			
		||||
</aside>
 | 
			
		||||
 | 
			
		||||
<div class="content-wrapper" ui-view>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,13 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-star"></i> Paid Plan Required</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-body">
 | 
			
		||||
    This feature is not available for free organizations. Switch to a paid plan to unlock more features.
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-footer">
 | 
			
		||||
    <button type="submit" class="btn btn-primary btn-flat" ng-click="go()" ng-if="admin">
 | 
			
		||||
        Upgrade Organization
 | 
			
		||||
    </button>
 | 
			
		||||
    <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,36 +0,0 @@
 | 
			
		|||
<div class="modal-header">
 | 
			
		||||
    <button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
 | 
			
		||||
    <h4 class="modal-title"><i class="fa fa-star"></i> Premium <span class="hidden-xs">Membership</span> Required</h4>
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-body">
 | 
			
		||||
    <p>This features requires a premium membership. Sign up for premium and get:</p>
 | 
			
		||||
    <ul class="fa-ul">
 | 
			
		||||
        <li>
 | 
			
		||||
            <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
            1 GB of encrypted file storage.
 | 
			
		||||
        </li>
 | 
			
		||||
        <li>
 | 
			
		||||
            <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
            Additional two-step login options such as YubiKey, FIDO U2F, and Duo.
 | 
			
		||||
        </li>
 | 
			
		||||
        <li>
 | 
			
		||||
            <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
            TOTP verification code (2FA) generator for logins in your vault.
 | 
			
		||||
        </li>
 | 
			
		||||
        <li>
 | 
			
		||||
            <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
            Priority customer support.
 | 
			
		||||
        </li>
 | 
			
		||||
        <li>
 | 
			
		||||
            <i class="fa-li fa fa-check text-green"></i>
 | 
			
		||||
            All future premium features. More coming soon!
 | 
			
		||||
        </li>
 | 
			
		||||
    </ul>
 | 
			
		||||
    All for just <b>{{10 | currency:"$":0}}</b> /year.
 | 
			
		||||
</div>
 | 
			
		||||
<div class="modal-footer">
 | 
			
		||||
    <button type="submit" class="btn btn-primary btn-flat" ng-click="go()">
 | 
			
		||||
        Get Premium
 | 
			
		||||
    </button>
 | 
			
		||||
    <button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
 | 
			
		||||
</div>
 | 
			
		||||
| 
						 | 
				
			
			@ -1,160 +0,0 @@
 | 
			
		|||
<header class="main-header" ng-controller="topNavController as topNav">
 | 
			
		||||
    <a ui-sref="backend.user.vault" class="logo">
 | 
			
		||||
        <span class="logo-mini"><i class="fa fa-shield"></i></span>
 | 
			
		||||
        <span class="logo-lg"><i class="fa fa-shield"></i> <b>bit</b>warden</span>
 | 
			
		||||
    </a>
 | 
			
		||||
    <nav class="navbar navbar-static-top" role="navigation">
 | 
			
		||||
        <a class="sidebar-toggle" data-toggle="offcanvas" role="button">
 | 
			
		||||
            <span class="sr-only">Toggle navigation</span>
 | 
			
		||||
            <span class="icon-bar"></span>
 | 
			
		||||
            <span class="icon-bar"></span>
 | 
			
		||||
            <span class="icon-bar"></span>
 | 
			
		||||
        </a>
 | 
			
		||||
        <div class="navbar-custom-menu">
 | 
			
		||||
            <ul class="nav navbar-nav">
 | 
			
		||||
                <li><a ui-sref="frontend.logout">Log Out</a></li>
 | 
			
		||||
                <li class="control-sidebar-show">
 | 
			
		||||
                    <a href="#" stop-click ng-click="toggleControlSidebar()"><i class="fa fa-bars"></i></a>
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
    </nav>
 | 
			
		||||
</header>
 | 
			
		||||
 | 
			
		||||
<aside class="main-sidebar" ng-controller="sideNavController as sideNav">
 | 
			
		||||
    <section class="sidebar">
 | 
			
		||||
        <div class="user-panel">
 | 
			
		||||
            <div class="pull-left image">
 | 
			
		||||
                <letter-avatar data="{{name}}" avclass="img-responsive"></letter-avatar>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div class="pull-left info">
 | 
			
		||||
                <p>{{name}}</p>
 | 
			
		||||
                <a ui-sref="frontend.logout">Log Out</a>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
        <ul class="sidebar-menu">
 | 
			
		||||
            <li class="header">WEB VAULT</li>
 | 
			
		||||
            <li class="treeview" ng-class="{active: $state.includes('backend.user.vault')}">
 | 
			
		||||
                <a ui-sref="backend.user.vault"><i class="fa fa-lock fa-fw"></i> <span>My Vault</span></a>
 | 
			
		||||
                <ul class="treeview-menu" ng-class="{'menu-open': $state.includes('backend.user.vault')}">
 | 
			
		||||
                    <li>
 | 
			
		||||
                        <a href="#" stop-click ng-click="addCipher()">
 | 
			
		||||
                            <i class="fa fa-plus-circle fa-fw"></i> New Item
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                    <li>
 | 
			
		||||
                        <a href="#" stop-click ng-click="addFolder()">
 | 
			
		||||
                            <i class="fa fa-folder fa-fw"></i> New Folder
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li class="treeview" ng-class="{active: $state.is('backend.user.tools') ||
 | 
			
		||||
                $state.is('backend.user.reportsBreach')}">
 | 
			
		||||
                <a ui-sref="backend.user.tools"><i class="fa fa-wrench fa-fw"></i> <span>Tools</span></a>
 | 
			
		||||
                <ul class="treeview-menu" ng-class="{'menu-open': $state.is('backend.user.tools') ||
 | 
			
		||||
                    $state.is('backend.user.reportsBreach')}">
 | 
			
		||||
                    <li ng-class="{active: $state.is('backend.user.reportsBreach')}">
 | 
			
		||||
                        <a ui-sref="backend.user.reportsBreach">
 | 
			
		||||
                            <i class="fa fa-circle-o fa-fw"></i> Data Breach Report
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li class="treeview"
 | 
			
		||||
                ng-class="{active: $state.is('backend.user.settings') || $state.is('backend.user.settingsDomains') ||
 | 
			
		||||
                    $state.is('backend.user.settingsCreateOrg') || $state.is('backend.user.settingsTwoStep') ||
 | 
			
		||||
                    $state.is('backend.user.settingsPremium') || $state.is('backend.user.settingsBilling')}">
 | 
			
		||||
                <a ui-sref="backend.user.settings"><i class="fa fa-cogs fa-fw"></i> <span>Settings</span></a>
 | 
			
		||||
                <ul class="treeview-menu" ng-class="{'menu-open': $state.is('backend.user.settings') ||
 | 
			
		||||
                        $state.is('backend.user.settingsDomains') || $state.is('backend.user.settingsCreateOrg')}">
 | 
			
		||||
                    <li ng-class="{active: $state.is('backend.user.settingsPremium')}">
 | 
			
		||||
                        <a ui-sref="backend.user.settingsPremium" ng-if="!main.userProfile || !main.userProfile.premium">
 | 
			
		||||
                            <i class="fa fa-star fa-fw"></i> Go Premium!
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                    <li ng-class="{active: $state.is('backend.user.settingsCreateOrg')}">
 | 
			
		||||
                        <a ui-sref="backend.user.settingsCreateOrg">
 | 
			
		||||
                            <i class="fa fa-plus-circle fa-fw"></i> New Organization
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                    <li ng-class="{active: $state.is('backend.user.settingsBilling')}">
 | 
			
		||||
                        <a ui-sref="backend.user.settingsBilling" ng-if="main.userProfile && main.userProfile.premium">
 | 
			
		||||
                            <i class="fa fa-circle-o fa-fw"></i> Billing & Licensing
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                    <li ng-class="{active: $state.is('backend.user.settingsTwoStep')}">
 | 
			
		||||
                        <a ui-sref="backend.user.settingsTwoStep">
 | 
			
		||||
                            <i class="fa fa-fw fa-circle-o"></i> Two-step Login
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                    <li ng-class="{active: $state.is('backend.user.settingsDomains')}">
 | 
			
		||||
                        <a ui-sref="backend.user.settingsDomains">
 | 
			
		||||
                            <i class="fa fa-fw fa-circle-o"></i> Domain Rules
 | 
			
		||||
                        </a>
 | 
			
		||||
                    </li>
 | 
			
		||||
                </ul>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li ng-class="{active: $state.is('backend.user.apps')}">
 | 
			
		||||
                <a href="https://bitwarden.com/#download" target="_blank">
 | 
			
		||||
                    <small class="label pull-right bg-green">FREE</small>
 | 
			
		||||
                    <i class="fa fa-download fa-fw"></i> <span>Get the Apps</span>
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li>
 | 
			
		||||
                <a href="https://help.bitwarden.com/" target="_blank"
 | 
			
		||||
                   analytics-on="click" analytics-event="Clicked Get Help">
 | 
			
		||||
                    <i class="fa fa-info-circle fa-fw"></i> <span>Get Help</span>
 | 
			
		||||
                </a>
 | 
			
		||||
            </li>
 | 
			
		||||
            <li class="header">
 | 
			
		||||
                ORGANIZATIONS
 | 
			
		||||
            </li>
 | 
			
		||||
        </ul>
 | 
			
		||||
        <div class="subsection">
 | 
			
		||||
            <div ng-if="!orgs.length" class="hidden-collapsed">
 | 
			
		||||
                <p>You do not belong to any organizations.</p>
 | 
			
		||||
                <a ui-sref="backend.user.settingsCreateOrg" class="btn btn-default btn-flat btn-block">
 | 
			
		||||
                    Create an Organization
 | 
			
		||||
                </a>
 | 
			
		||||
            </div>
 | 
			
		||||
            <ul class="list-inline" ng-if="orgs.length">
 | 
			
		||||
                <li ng-repeat="org in orgs | orderBy: ['name'] track by org.id">
 | 
			
		||||
                    <a href="#" stop-click ng-click="viewOrganization(org)">
 | 
			
		||||
                        <letter-avatar data="{{org.name}}" avclass="img-responsive img-rounded" round="false"
 | 
			
		||||
                                       avheight="40" avwidth="40" bgcolor="{{orgIconBgColor}}" avborder="true"
 | 
			
		||||
                                       borderstyle="{{orgIconBorder}}" textcolor="{{orgIconTextColor}}"></letter-avatar>
 | 
			
		||||
                    </a>
 | 
			
		||||
                </li>
 | 
			
		||||
            </ul>
 | 
			
		||||
        </div>
 | 
			
		||||
    </section>
 | 
			
		||||
</aside>
 | 
			
		||||
 | 
			
		||||
<div class="content-wrapper">
 | 
			
		||||
    <div class="alert alert-danger alert-notification" ng-if="main.outdatedBrowser" ng-click="updateBrowser()">
 | 
			
		||||
        <h4><i class="fa fa-warning fa-fw"></i> Update Your Browser</h4>
 | 
			
		||||
        You are using an unsupported web browser. The web vault may not function properly.
 | 
			
		||||
        <u>Update your browser now</u>.
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="alert alert-warning alert-notification" ng-click="updateKey()" ng-if="!main.usingEncKey">
 | 
			
		||||
        <h4><i class="fa fa-key fa-fw"></i> Update Your Encryption Key</h4>
 | 
			
		||||
        You are currently using an outdated encryption scheme.
 | 
			
		||||
        <a href="#" stop-click>Learn more and update now</a>.
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="alert alert-warning alert-notification" ng-click="verifyEmail()"
 | 
			
		||||
         ng-if="main.usingEncKey && main.userProfile && !main.userProfile.emailVerified">
 | 
			
		||||
        <h4><i class="fa fa-envelope fa-fw"></i> Verify Your Email</h4>
 | 
			
		||||
        <div ng-if="!verifyEmailSent">
 | 
			
		||||
            Verify your account's email address to unlock access to all features.
 | 
			
		||||
            <a href="#" stop-click>Send verification email now</a>.
 | 
			
		||||
            <i class="fa fa-spin fa-refresh" ng-if="sendingVerify"></i>
 | 
			
		||||
        </div>
 | 
			
		||||
        <div ng-if="verifyEmailSent">
 | 
			
		||||
            Check your email inbox for a verification link.
 | 
			
		||||
            <a href="#" stop-click>Send verification email again</a>.
 | 
			
		||||
            <i class="fa fa-spin fa-refresh" ng-if="sendingVerify"></i>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div ui-view></div>
 | 
			
		||||
</div>
 | 
			
		||||
							
								
								
									
										1
									
								
								web-vault/css/vault.min.css
									
										
									
									
										vendored
									
									
								
							
							
						
						| 
						 | 
				
			
			@ -1,31 +0,0 @@
 | 
			
		|||
<!DOCTYPE html>
 | 
			
		||||
<html>
 | 
			
		||||
<head>
 | 
			
		||||
    <meta charset="utf-8">
 | 
			
		||||
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
 | 
			
		||||
    <title>Duo Two-step Login</title>
 | 
			
		||||
    <style>
 | 
			
		||||
        html, body {
 | 
			
		||||
            margin: 0;
 | 
			
		||||
            padding: 0;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        body {
 | 
			
		||||
            background: #efeff4 url('images/loading.svg') 0 0 no-repeat;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        iframe {
 | 
			
		||||
            display: block;
 | 
			
		||||
            width: 100%;
 | 
			
		||||
            height: 400px;
 | 
			
		||||
            border: none;
 | 
			
		||||
            margin: 0;
 | 
			
		||||
            padding: 0;
 | 
			
		||||
        }
 | 
			
		||||
    </style>
 | 
			
		||||
</head>
 | 
			
		||||
<body>
 | 
			
		||||
    <script src="js/duo.js"></script>
 | 
			
		||||
    <script src="js/duo-connector.js"></script>
 | 
			
		||||
</body>
 | 
			
		||||
</html>
 | 
			
		||||
| 
		 Before Width: | Height: | Size: 18 KiB  | 
| 
		 Before Width: | Height: | Size: 82 KiB  | 
| 
		 Before Width: | Height: | Size: 62 KiB  | 
| 
		 Before Width: | Height: | Size: 17 KiB  | 
| 
		 Before Width: | Height: | Size: 344 B  | 
| 
		 Before Width: | Height: | Size: 4 KiB  | 
| 
		 Before Width: | Height: | Size: 11 KiB  | 
| 
		 Before Width: | Height: | Size: 15 KiB  | 
| 
		 Before Width: | Height: | Size: 403 B  | 
| 
		 Before Width: | Height: | Size: 636 B  | 
| 
		 Before Width: | Height: | Size: 2.6 KiB  | 
| 
						 | 
				
			
			@ -1,26 +0,0 @@
 | 
			
		|||
<?xml version="1.0" standalone="no"?>
 | 
			
		||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
 | 
			
		||||
 "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
 | 
			
		||||
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
 | 
			
		||||
 width="512.000000pt" height="512.000000pt" viewBox="0 0 512.000000 512.000000"
 | 
			
		||||
 preserveAspectRatio="xMidYMid meet">
 | 
			
		||||
<metadata>
 | 
			
		||||
Created by potrace 1.11, written by Peter Selinger 2001-2013
 | 
			
		||||
</metadata>
 | 
			
		||||
<g transform="translate(0.000000,512.000000) scale(0.100000,-0.100000)"
 | 
			
		||||
fill="#000000" stroke="none">
 | 
			
		||||
<path d="M824 4945 c-92 -16 -133 -30 -218 -71 -91 -45 -150 -90 -229 -173
 | 
			
		||||
-112 -119 -182 -263 -207 -427 -7 -47 -10 -598 -8 -1759 l3 -1690 22 -70 c32
 | 
			
		||||
-103 58 -160 108 -234 88 -132 222 -243 367 -300 157 -63 87 -61 1892 -61
 | 
			
		||||
1797 0 1750 -1 1900 59 239 96 408 289 483 551 17 62 18 145 18 1790 0 1645
 | 
			
		||||
-1 1728 -18 1790 -44 155 -111 272 -214 372 -106 105 -218 170 -362 211 l-76
 | 
			
		||||
22 -1695 2 c-1357 1 -1709 -1 -1766 -12z m3196 -617 c18 -13 41 -39 51 -58 18
 | 
			
		||||
-33 19 -79 19 -1000 -1 -866 -4 -1026 -25 -1131 -26 -136 -150 -397 -251 -534
 | 
			
		||||
-81 -109 -302 -330 -439 -441 -105 -85 -296 -216 -390 -270 -11 -6 -60 -34
 | 
			
		||||
-108 -62 -146 -86 -272 -142 -316 -142 -102 0 -530 247 -811 469 -143 112
 | 
			
		||||
-385 359 -462 471 -102 148 -175 300 -226 475 l-26 90 -4 1010 c-2 719 0 1021
 | 
			
		||||
8 1048 7 25 24 47 52 67 l41 30 1427 0 1427 0 33 -22z"/>
 | 
			
		||||
<path d="M2560 2540 l0 -1350 38 19 c231 118 489 307 683 500 181 180 265 309
 | 
			
		||||
321 488 21 66 21 87 25 881 l4 812 -535 0 -536 0 0 -1350z"/>
 | 
			
		||||
</g>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 Before Width: | Height: | Size: 1.4 KiB  | 
| 
						 | 
				
			
			@ -1,6 +0,0 @@
 | 
			
		|||
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 100% 100%">
 | 
			
		||||
  <text fill="%23333333" x="50%" y="50%" font-family="\'Open Sans\', \'Helvetica Neue\', Helvetica, Arial, sans-serif"
 | 
			
		||||
        font-size="18" text-anchor="middle">
 | 
			
		||||
    Loading...
 | 
			
		||||
  </text>
 | 
			
		||||
</svg>
 | 
			
		||||
| 
		 Before Width: | Height: | Size: 288 B  | 
| 
		 Before Width: | Height: | Size: 1.6 KiB  | 
| 
		 Before Width: | Height: | Size: 5.9 KiB  | 
| 
		 Before Width: | Height: | Size: 1.2 KiB  | 
| 
		 Before Width: | Height: | Size: 4.7 KiB  |