Initial commit
authorRafał Długołęcki <dlugolecki.rafal@gmail.com>
Thu, 11 Feb 2016 23:21:39 +0000 (00:21 +0100)
committerRafał Długołęcki <dlugolecki.rafal@gmail.com>
Thu, 11 Feb 2016 23:21:39 +0000 (00:21 +0100)
commit5e0fe0cb10f848f46dd875350ca51198e28e0c74
tree82feab876adb5a8bd560872059796345661b3062
Initial commit
103 files changed:
.gitattributes [new file with mode: 0644]
.gitignore [new file with mode: 0644]
Projects.sln [new file with mode: 0644]
Projects/App_Start/BundleConfig.cs [new file with mode: 0644]
Projects/App_Start/FilterConfig.cs [new file with mode: 0644]
Projects/App_Start/IdentityConfig.cs [new file with mode: 0644]
Projects/App_Start/RouteConfig.cs [new file with mode: 0644]
Projects/App_Start/Startup.Auth.cs [new file with mode: 0644]
Projects/ApplicationInsights.config [new file with mode: 0644]
Projects/Content/Site.css [new file with mode: 0644]
Projects/Content/bootstrap.css [new file with mode: 0644]
Projects/Content/bootstrap.min.css [new file with mode: 0644]
Projects/Controllers/AccountController.cs [new file with mode: 0644]
Projects/Controllers/HomeController.cs [new file with mode: 0644]
Projects/Controllers/ManageController.cs [new file with mode: 0644]
Projects/Controllers/ProjectTasksController.cs [new file with mode: 0644]
Projects/Controllers/ProjectsController.cs [new file with mode: 0644]
Projects/Global.asax [new file with mode: 0644]
Projects/Global.asax.cs [new file with mode: 0644]
Projects/Models/AccountViewModels.cs [new file with mode: 0644]
Projects/Models/IdentityModels.cs [new file with mode: 0644]
Projects/Models/ManageViewModels.cs [new file with mode: 0644]
Projects/Models/Metadata.cs [new file with mode: 0644]
Projects/Models/Model1.Context.cs [new file with mode: 0644]
Projects/Models/Model1.Context.tt [new file with mode: 0644]
Projects/Models/Model1.Designer.cs [new file with mode: 0644]
Projects/Models/Model1.cs [new file with mode: 0644]
Projects/Models/Model1.edmx [new file with mode: 0644]
Projects/Models/Model1.edmx.diagram [new file with mode: 0644]
Projects/Models/Model1.tt [new file with mode: 0644]
Projects/Models/PartialClasses.cs [new file with mode: 0644]
Projects/Models/Project.cs [new file with mode: 0644]
Projects/Models/ProjectTask.cs [new file with mode: 0644]
Projects/Models/ProjectUser.cs [new file with mode: 0644]
Projects/Models/TaskStatus.cs [new file with mode: 0644]
Projects/Models/sysdiagram.cs [new file with mode: 0644]
Projects/Project_Readme.html [new file with mode: 0644]
Projects/Projects.csproj [new file with mode: 0644]
Projects/Properties/AssemblyInfo.cs [new file with mode: 0644]
Projects/Scripts/_references.js [new file with mode: 0644]
Projects/Scripts/ai.0.15.0-build58334.js [new file with mode: 0644]
Projects/Scripts/ai.0.15.0-build58334.min.js [new file with mode: 0644]
Projects/Scripts/bootstrap.js [new file with mode: 0644]
Projects/Scripts/bootstrap.min.js [new file with mode: 0644]
Projects/Scripts/jquery-1.10.2.intellisense.js [new file with mode: 0644]
Projects/Scripts/jquery-1.10.2.js [new file with mode: 0644]
Projects/Scripts/jquery-1.10.2.min.js [new file with mode: 0644]
Projects/Scripts/jquery-1.10.2.min.map [new file with mode: 0644]
Projects/Scripts/jquery.validate-vsdoc.js [new file with mode: 0644]
Projects/Scripts/jquery.validate.js [new file with mode: 0644]
Projects/Scripts/jquery.validate.min.js [new file with mode: 0644]
Projects/Scripts/jquery.validate.unobtrusive.js [new file with mode: 0644]
Projects/Scripts/jquery.validate.unobtrusive.min.js [new file with mode: 0644]
Projects/Scripts/modernizr-2.6.2.js [new file with mode: 0644]
Projects/Scripts/respond.js [new file with mode: 0644]
Projects/Scripts/respond.min.js [new file with mode: 0644]
Projects/Startup.cs [new file with mode: 0644]
Projects/Views/Account/ConfirmEmail.cshtml [new file with mode: 0644]
Projects/Views/Account/ExternalLoginConfirmation.cshtml [new file with mode: 0644]
Projects/Views/Account/ExternalLoginFailure.cshtml [new file with mode: 0644]
Projects/Views/Account/ForgotPassword.cshtml [new file with mode: 0644]
Projects/Views/Account/ForgotPasswordConfirmation.cshtml [new file with mode: 0644]
Projects/Views/Account/Login.cshtml [new file with mode: 0644]
Projects/Views/Account/Register.cshtml [new file with mode: 0644]
Projects/Views/Account/ResetPassword.cshtml [new file with mode: 0644]
Projects/Views/Account/ResetPasswordConfirmation.cshtml [new file with mode: 0644]
Projects/Views/Account/SendCode.cshtml [new file with mode: 0644]
Projects/Views/Account/VerifyCode.cshtml [new file with mode: 0644]
Projects/Views/Account/_ExternalLoginsListPartial.cshtml [new file with mode: 0644]
Projects/Views/Home/About.cshtml [new file with mode: 0644]
Projects/Views/Home/Contact.cshtml [new file with mode: 0644]
Projects/Views/Home/Index.cshtml [new file with mode: 0644]
Projects/Views/Manage/AddPhoneNumber.cshtml [new file with mode: 0644]
Projects/Views/Manage/ChangePassword.cshtml [new file with mode: 0644]
Projects/Views/Manage/Index.cshtml [new file with mode: 0644]
Projects/Views/Manage/ManageLogins.cshtml [new file with mode: 0644]
Projects/Views/Manage/SetPassword.cshtml [new file with mode: 0644]
Projects/Views/Manage/VerifyPhoneNumber.cshtml [new file with mode: 0644]
Projects/Views/ProjectTasks/Create.cshtml [new file with mode: 0644]
Projects/Views/ProjectTasks/Delete.cshtml [new file with mode: 0644]
Projects/Views/ProjectTasks/Details.cshtml [new file with mode: 0644]
Projects/Views/ProjectTasks/Edit.cshtml [new file with mode: 0644]
Projects/Views/ProjectTasks/Index.cshtml [new file with mode: 0644]
Projects/Views/Projects/Create.cshtml [new file with mode: 0644]
Projects/Views/Projects/Delete.cshtml [new file with mode: 0644]
Projects/Views/Projects/Details.cshtml [new file with mode: 0644]
Projects/Views/Projects/Edit.cshtml [new file with mode: 0644]
Projects/Views/Projects/Index.cshtml [new file with mode: 0644]
Projects/Views/Shared/Error.cshtml [new file with mode: 0644]
Projects/Views/Shared/Lockout.cshtml [new file with mode: 0644]
Projects/Views/Shared/_Layout.cshtml [new file with mode: 0644]
Projects/Views/Shared/_LoginPartial.cshtml [new file with mode: 0644]
Projects/Views/Web.config [new file with mode: 0644]
Projects/Views/_ViewStart.cshtml [new file with mode: 0644]
Projects/Web.Debug.config [new file with mode: 0644]
Projects/Web.Release.config [new file with mode: 0644]
Projects/Web.config [new file with mode: 0644]
Projects/favicon.ico [new file with mode: 0644]
Projects/fonts/glyphicons-halflings-regular.eot [new file with mode: 0644]
Projects/fonts/glyphicons-halflings-regular.svg [new file with mode: 0644]
Projects/fonts/glyphicons-halflings-regular.ttf [new file with mode: 0644]
Projects/fonts/glyphicons-halflings-regular.woff [new file with mode: 0644]
Projects/packages.config [new file with mode: 0644]