├── data └── file │ └── readme.md ├── app ├── log │ └── readme.md ├── view │ ├── mail_template │ │ └── register.html │ ├── home │ │ ├── 404.php │ │ ├── server_error.php │ │ ├── share_error.php │ │ └── index.php │ ├── share │ │ ├── picture-text.php │ │ ├── url.php │ │ ├── text.php │ │ ├── multi-text.php │ │ ├── file.php │ │ ├── picture.php │ │ ├── code.php │ │ └── markdown.php │ ├── common │ │ ├── footer.php │ │ ├── my_footer.php │ │ ├── header.php │ │ └── my_header.php │ ├── member │ │ ├── list.php │ │ └── home.php │ ├── profile │ │ ├── access_token.php │ │ ├── edit_name.php │ │ ├── edit_password.php │ │ └── edit_avatar.php │ ├── my │ │ ├── login.php │ │ ├── password_reset.php │ │ ├── login_form.php │ │ ├── password_reset_input.php │ │ └── register.php │ └── add │ │ ├── text.php │ │ ├── multi-text.php │ │ ├── url.php │ │ ├── code.php │ │ ├── markdown.php │ │ ├── file.php │ │ └── picture.php ├── page.error │ └── Home.php ├── page │ └── Api │ │ ├── Tool.php │ │ └── Member.php ├── lib │ ├── Hook.php │ ├── Share │ │ ├── ShareText.php │ │ ├── ShareMarkdown.php │ │ ├── ShareUrl.php │ │ ├── SharePicture.php │ │ ├── ShareParse.php │ │ ├── SharePictureText.php │ │ ├── ShareFile.php │ │ └── ShareMultiText.php │ ├── Markdown │ │ └── LICENSE.txt │ ├── Member │ │ ├── DaoGoogle.php │ │ ├── DaoShare.php │ │ └── Dao.php │ ├── ShareBaseInfo.php │ ├── ShareList.php │ ├── Page.php │ └── MailTemplate.php ├── page.my │ ├── MyList.php │ ├── Profile.php │ ├── OAuth2.php │ └── Home.php └── helper │ └── ref_class.php ├── LICENSE.md ├── web ├── favicon.ico ├── asset │ ├── style │ │ ├── images │ │ │ ├── logo.png │ │ │ └── sign-in-with-google.png │ │ └── main.js │ ├── bootstrap │ │ └── 3.3.1 │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── js │ │ │ └── npm.js │ └── plugins │ │ ├── syntaxhighlighter │ │ ├── scripts │ │ │ ├── shBrushPlain.js │ │ │ ├── shBrushDiff.js │ │ │ ├── shAutoloader.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shLegacy.js │ │ │ ├── shBrushErlang.js │ │ │ ├── shBrushScala.js │ │ │ ├── shBrushXml.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushJavaFX.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushAS3.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushBash.js │ │ │ ├── shBrushGroovy.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushPerl.js │ │ │ ├── shBrushPowerShell.js │ │ │ ├── shBrushPhp.js │ │ │ └── shBrushCpp.js │ │ ├── src │ │ │ ├── shAutoloader.js │ │ │ └── shLegacy.js │ │ └── styles │ │ │ ├── shThemeMDUltra.css │ │ │ ├── shThemeEmacs.css │ │ │ ├── shThemeRDark.css │ │ │ ├── shThemeMidnight.css │ │ │ ├── shThemeDefault.css │ │ │ ├── shThemeFadeToGrey.css │ │ │ ├── shThemeDjango.css │ │ │ └── shThemeEclipse.css │ │ └── markdown │ │ └── bootstrap-markdown.min.css ├── .htaccess └── index.php ├── .gitmodules ├── nginx.conf ├── .gitignore ├── README.md ├── config ├── oauth2-simple.php └── all-simple.php └── sys └── config.php /data/file/readme.md: -------------------------------------------------------------------------------- 1 | 上传的文件存放在此目录 -------------------------------------------------------------------------------- /app/log/readme.md: -------------------------------------------------------------------------------- 1 | ### 日志记录文件夹,以日期归档 -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 代码仅供个人任意参考和使用 2 | 3 | 完整程序不允许公开在互联网发布,且不允许用于商业用途 -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/ShadowShare/master/web/favicon.ico -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "sys/core"] 2 | path = sys/core 3 | url = git@github.com:loveyu/php-framework-module.git 4 | -------------------------------------------------------------------------------- /web/asset/style/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/ShadowShare/master/web/asset/style/images/logo.png -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- 1 | location / { 2 | if (!-f $request_filename){ 3 | rewrite (.*) /index.php; 4 | } 5 | } 6 | error_page 404 /index.php; 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # 移除部分系统目录 2 | .git/* 3 | .idea/* 4 | app/cache/ 5 | app/log/*.log 6 | test/ 7 | data/file/*/ 8 | config/oauth2.php 9 | config/all.php -------------------------------------------------------------------------------- /web/asset/style/images/sign-in-with-google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/ShadowShare/master/web/asset/style/images/sign-in-with-google.png -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteBase / 3 | 4 | #不存在的文件直接重定向 5 | RewriteCond %{REQUEST_FILENAME} !-f 6 | RewriteRule ^(.*)$ /index.php [L] 7 | 8 | -------------------------------------------------------------------------------- /web/asset/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/ShadowShare/master/web/asset/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /web/asset/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/ShadowShare/master/web/asset/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /web/asset/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loveyu/ShadowShare/master/web/asset/bootstrap/3.3.1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 阅后即隐 2 | 一个简单多功能一次性分享网站 3 | 4 | 完整网站:[https://shadow.loveyu.info](https://shadow.loveyu.info) 5 | 6 | 自定义域名配置:调整sys/config.php 中的域名定义即可 7 | 8 | 信息反馈:[https://www.loveyu.org/4107.html](https://www.loveyu.org/4107.html) -------------------------------------------------------------------------------- /app/view/mail_template/register.html: -------------------------------------------------------------------------------- 1 |
你的验证码为 : {code}
5 | 6 |如有疑问,访问:{site_title}
7 |