Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
Update The first Version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiahui Xiong committed Jan 31, 2020
1 parent d052b78 commit 0ae107b
Show file tree
Hide file tree
Showing 31 changed files with 1,423 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.DS_Store
node_modules
build
gauth.zip
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# MFAOnline

这是一个用于多因素身份验证的简单应用程序,使用`HTML5`编写。 它根据[RFC6238](https://tools.ietf.org/html/rfc6238)实现了`TOTP`(基于时间的一次性密码)算法,并经过了测试,可与`Google Authenticator``Dropbox``Dreamhost`,亚马逊,`Linode``Okta`等许多服务相兼容。

## 部署

将所有文件放置在网页服务器根目录下即可。
Binary file added css/images/ajax-loader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions css/jquery.mobile-1.4.5.min.css

Large diffs are not rendered by default.

217 changes: 217 additions & 0 deletions css/jquery.mobile-custom.min.css

Large diffs are not rendered by default.

60 changes: 60 additions & 0 deletions css/styling.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
.ui-dialog-background {
opacity: 0.5;
display: block !important;
-webkit-transition: opacity 0.5s ease-in;
}

.ui-dialog-background.pop.in {
opacity: 1;
-webkit-transition: opacity 0.5s ease-in;
}

footer, div[data-role="footer"] {
display: none;
}

#accounts h3 {
font-family: monospace;
font-size: 200%;
}

.ui-panel {
background-color: #f9f9f9;
}

.ui-corner-all {
-webkit-border-radius: .0 !important;
-moz-border-radius: .0 !important;
border-radius: 0 !important;
}

#panelheader {
background-color: #1593f9;
border: none;
color: #ffffff;
text-shadow: 0 1px 0 #0857c4;
}

.header-icon {
/* quick-n-dirty fix */
background: #1593f9 !important;
border-color: #1593f9 !important;
color: #fff;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}

#addButton {
display: none;
}

.ui-listview .ui-li-aside {
height: 100%;
top: 0;
}

.ui-listview .ui-btn-icon-notext {
display: inline-block;
vertical-align: middle;
}
Binary file added favicon.ico
Binary file not shown.
Binary file added img/flattr-badge-large.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_128-app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_256-app.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/icon_64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
168 changes: 168 additions & 0 deletions img/icon_scalable-packaged-blue.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 0ae107b

Please sign in to comment.