diff --git a/appdev/appdev/Properties/PublishProfiles/appdev20230111115022 - Web Deploy.pubxml b/appdev/appdev/Properties/PublishProfiles/appdev20230111115022 - Web Deploy.pubxml new file mode 100644 index 0000000..f7eec93 --- /dev/null +++ b/appdev/appdev/Properties/PublishProfiles/appdev20230111115022 - Web Deploy.pubxml @@ -0,0 +1,30 @@ + + + + + MSDeploy + /subscriptions/b380e984-259f-4a7b-9138-6d579fa434f0/resourcegroups/appdev20230111115022ResourceGroup/providers/Microsoft.Web/sites/appdev20230111115022 + appdev20230111115022ResourceGroup + AzureWebSite + Release + Any CPU + https://appdev20230111115022.azurewebsites.net + true + false + e9a30693-f23c-4e66-8348-babf5b3eff5d + appdev20230111115022.scm.azurewebsites.net:443 + appdev20230111115022 + + true + WMSVC + true + true + $appdev20230111115022 + <_SavePWD>true + <_DestinationType>AzureWebSite + false + + \ No newline at end of file diff --git a/appdev/appdev/Properties/PublishProfiles/appdev20230111115022 - Web Deploy.pubxml.user b/appdev/appdev/Properties/PublishProfiles/appdev20230111115022 - Web Deploy.pubxml.user new file mode 100644 index 0000000..592f676 --- /dev/null +++ b/appdev/appdev/Properties/PublishProfiles/appdev20230111115022 - Web Deploy.pubxml.user @@ -0,0 +1,13 @@ + + + + + + AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAposbCphR0EG7kjC9H9eB9gAAAAACAAAAAAAQZgAAAAEAACAAAAANb/Jf0mdeKn1qGezun33HI/1lzH3OLkSW9cFEB30YZQAAAAAOgAAAAAIAACAAAAAhFCf7ChU+Jzru1aroUurmiXeLu/Vb8JJ0GknLBSKHqoAAAAB1Txi8R46vxlzb1pORzYKMXoDGzQjyNXbVKpi8G1+QHbZ8rg4b7RPeGNFzUNBB52E1OIi61KueGla6bhWaK5K87L3vRg1gq/A2mvOo1fIe65aTjZsWlRfLbPx10RPkDgBOEwagpq+GzSFeCDRjg4bkCxGU2zVoDy6wgTSb0P+3M0AAAABXMhK0gcsxDNGHiwVjJi+tk11aavF+v/roRRlzCdl9TBi5elbvhDna4I05VPGpeonFTssjEU5IurXEhARt6nRd + True|2023-01-11T02:53:34.9445958Z; + + + \ No newline at end of file diff --git a/appdev/appdev/Properties/ServiceDependencies/appdev20230111115022 - Web Deploy/profile.arm.json b/appdev/appdev/Properties/ServiceDependencies/appdev20230111115022 - Web Deploy/profile.arm.json new file mode 100644 index 0000000..639e660 --- /dev/null +++ b/appdev/appdev/Properties/ServiceDependencies/appdev20230111115022 - Web Deploy/profile.arm.json @@ -0,0 +1,113 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "metadata": { + "_dependencyType": "compute.appService.windows" + }, + "parameters": { + "resourceGroupName": { + "type": "string", + "defaultValue": "appdev20230111115022ResourceGroup", + "metadata": { + "description": "Name of the resource group for the resource. It is recommended to put resources under same resource group for better tracking." + } + }, + "resourceGroupLocation": { + "type": "string", + "defaultValue": "eastus", + "metadata": { + "description": "Location of the resource group. Resource groups could have different location than resources, however by default we use API versions from latest hybrid profile which support all locations for resource types we support." + } + }, + "resourceName": { + "type": "string", + "defaultValue": "appdev20230111115022", + "metadata": { + "description": "Name of the main resource to be created by this template." + } + }, + "resourceLocation": { + "type": "string", + "defaultValue": "[parameters('resourceGroupLocation')]", + "metadata": { + "description": "Location of the resource. By default use resource group's location, unless the resource provider is not supported there." + } + } + }, + "variables": { + "appServicePlan_name": "[concat('Plan', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId)))]", + "appServicePlan_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Web/serverFarms/', variables('appServicePlan_name'))]" + }, + "resources": [ + { + "type": "Microsoft.Resources/resourceGroups", + "name": "[parameters('resourceGroupName')]", + "location": "[parameters('resourceGroupLocation')]", + "apiVersion": "2019-10-01" + }, + { + "type": "Microsoft.Resources/deployments", + "name": "[concat(parameters('resourceGroupName'), 'Deployment', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId)))]", + "resourceGroup": "[parameters('resourceGroupName')]", + "apiVersion": "2019-10-01", + "dependsOn": [ + "[parameters('resourceGroupName')]" + ], + "properties": { + "mode": "Incremental", + "template": { + "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "resources": [ + { + "location": "[parameters('resourceLocation')]", + "name": "[parameters('resourceName')]", + "type": "Microsoft.Web/sites", + "apiVersion": "2015-08-01", + "tags": { + "[concat('hidden-related:', variables('appServicePlan_ResourceId'))]": "empty" + }, + "dependsOn": [ + "[variables('appServicePlan_ResourceId')]" + ], + "kind": "app", + "properties": { + "name": "[parameters('resourceName')]", + "kind": "app", + "httpsOnly": true, + "reserved": false, + "serverFarmId": "[variables('appServicePlan_ResourceId')]", + "siteConfig": { + "metadata": [ + { + "name": "CURRENT_STACK", + "value": "dotnetcore" + } + ] + } + }, + "identity": { + "type": "SystemAssigned" + } + }, + { + "location": "[parameters('resourceLocation')]", + "name": "[variables('appServicePlan_name')]", + "type": "Microsoft.Web/serverFarms", + "apiVersion": "2015-08-01", + "sku": { + "name": "S1", + "tier": "Standard", + "family": "S", + "size": "S1" + }, + "properties": { + "name": "[variables('appServicePlan_name')]" + } + } + ] + } + } + } + ] +} \ No newline at end of file diff --git a/appdev/appdev/appdev.csproj.user b/appdev/appdev/appdev.csproj.user index 9a3baee..e938232 100644 --- a/appdev/appdev/appdev.csproj.user +++ b/appdev/appdev/appdev.csproj.user @@ -5,5 +5,6 @@ root/Common/MVC/View MvcControllerEmptyScaffolder root/Common/MVC/Controller + C:\Users\81808\Documents\GitHub\E_team\appdev\appdev\Properties\PublishProfiles\appdev20230111115022 - Web Deploy.pubxml \ No newline at end of file diff --git a/appdev/appdev/obj/Debug/net6.0/appdev.GeneratedMSBuildEditorConfig.editorconfig b/appdev/appdev/obj/Debug/net6.0/appdev.GeneratedMSBuildEditorConfig.editorconfig index bf440a8..0bda146 100644 --- a/appdev/appdev/obj/Debug/net6.0/appdev.GeneratedMSBuildEditorConfig.editorconfig +++ b/appdev/appdev/obj/Debug/net6.0/appdev.GeneratedMSBuildEditorConfig.editorconfig @@ -5,57 +5,56 @@ build_property.UsingMicrosoftNETSdkWeb = true build_property.ProjectTypeGuids = build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = -build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = appdev build_property.RootNamespace = appdev -build_property.ProjectDir = C:\Users\81808\Documents\GitHub\E_team\appdev\appdev\ +build_property.ProjectDir = c:\Users\haru2\Documents\GitHub\E_team\appdev\appdev\ build_property.RazorLangVersion = 6.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\81808\Documents\GitHub\E_team\appdev\appdev +build_property.MSBuildProjectDirectory = c:\Users\haru2\Documents\GitHub\E_team\appdev\appdev build_property._RazorSourceGeneratorDebug = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/Admin/account_management.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/Admin/account_management.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcQWRtaW5cYWNjb3VudF9tYW5hZ2VtZW50LmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/Admin/TopPage.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/Admin/TopPage.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcQWRtaW5cVG9wUGFnZS5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/Home/Index.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/Home/Index.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxJbmRleC5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/Home/Privacy.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/Home/Privacy.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcSG9tZVxQcml2YWN5LmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/Login/AdminLogin.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/Login/AdminLogin.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcTG9naW5cQWRtaW5Mb2dpbi5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/Login/Signup.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/Login/Signup.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcTG9naW5cU2lnbnVwLmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/Shared/Error.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/Shared/Error.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXEVycm9yLmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/Shared/_ValidationScriptsPartial.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/Shared/_ValidationScriptsPartial.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9WYWxpZGF0aW9uU2NyaXB0c1BhcnRpYWwuY3NodG1s build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/_ViewImports.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/_ViewImports.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdJbXBvcnRzLmNzaHRtbA== build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/_ViewStart.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/_ViewStart.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcX1ZpZXdTdGFydC5jc2h0bWw= build_metadata.AdditionalFiles.CssScope = -[C:/Users/81808/Documents/GitHub/E_team/appdev/appdev/Views/Shared/_Layout.cshtml] +[c:/Users/haru2/Documents/GitHub/E_team/appdev/appdev/Views/Shared/_Layout.cshtml] build_metadata.AdditionalFiles.TargetPath = Vmlld3NcU2hhcmVkXF9MYXlvdXQuY3NodG1s build_metadata.AdditionalFiles.CssScope = b-h7dok4ydxy diff --git a/appdev/appdev/obj/Debug/net6.0/appdev.assets.cache b/appdev/appdev/obj/Debug/net6.0/appdev.assets.cache index 7226d21..3749b29 100644 Binary files a/appdev/appdev/obj/Debug/net6.0/appdev.assets.cache and b/appdev/appdev/obj/Debug/net6.0/appdev.assets.cache differ diff --git a/appdev/appdev/obj/Debug/net6.0/appdev.csproj.AssemblyReference.cache b/appdev/appdev/obj/Debug/net6.0/appdev.csproj.AssemblyReference.cache index cef0c34..4749a14 100644 Binary files a/appdev/appdev/obj/Debug/net6.0/appdev.csproj.AssemblyReference.cache and b/appdev/appdev/obj/Debug/net6.0/appdev.csproj.AssemblyReference.cache differ diff --git a/htmlsource/admin_login.html b/htmlsource/admin_login.html new file mode 100644 index 0000000..77d4bdb --- /dev/null +++ b/htmlsource/admin_login.html @@ -0,0 +1,98 @@ + + + + + + login_page_mock + + + + + + + + +
+ +
+ +
+ +
+ +
+ +

ログイン画面

+ + +
+ + + + + + + + + + + + + + + + + +
+ ID + + +
+ パスワード + + + +
+ +

+ +   +

+ +
+ + +
+ +
+ + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/htmlsource/admin_signup.html b/htmlsource/admin_signup.html new file mode 100644 index 0000000..e5e11cf --- /dev/null +++ b/htmlsource/admin_signup.html @@ -0,0 +1,106 @@ + + + + + + signup_page_mock + + + + + + + + +
+ +
+ +
+ +
+ +
+ +

登録画面

+ + +
+ + + + + + + + + + + + + + + + + + + + + +
+ メールアドレス + + +
+ ID + + +
+ パスワード + + + +
+ +

+ +   +

+ +
+ + +
+ +
+ + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/htmlsource/css/fishingpage.css b/htmlsource/css/fishingpage.css new file mode 100644 index 0000000..d452cc0 --- /dev/null +++ b/htmlsource/css/fishingpage.css @@ -0,0 +1,21 @@ +body { + background-color:#000000; + +} + +.nannka { + font-size:50px; + color:red; +} + + +h1,h3 { + color:#ffffff; + text-align:center; +} + +footer { + color:#ffffff; + position: absolute;/*←絶対位置*/ + bottom: 0; /*下に固定*/ +} \ No newline at end of file diff --git a/htmlsource/fishingpage.html b/htmlsource/fishingpage.html new file mode 100644 index 0000000..4aa0c47 --- /dev/null +++ b/htmlsource/fishingpage.html @@ -0,0 +1,29 @@ + + + + + + + + + + + +

ご登録ありがとうございました

+ +

会員情報、個人情報の登録が完了しました

+ +

利用金額 14万9800円(税込み)お支払いをお願いします

+ + +

3日以内にお支払いをお願いします

+ + + + + + + + \ No newline at end of file diff --git a/htmlsource/student_login.html b/htmlsource/student_login.html new file mode 100644 index 0000000..8500ecd --- /dev/null +++ b/htmlsource/student_login.html @@ -0,0 +1,98 @@ + + + + + + student_login_page + + + + + + + + +
+ +
+ +
+ +
+ +
+ +

ログイン画面

+ + +
+ + + + + + + + + + + + + + + + + +
+ ID + + +
+ パスワード + + + +
+ +

+ +   +

+ +
+ + +
+ +
+ + + + + + + + +
+ + + + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git "a/htmlsource/\343\203\210\343\203\203\343\203\227\343\203\232\343\203\274\343\202\270.html" "b/htmlsource/\343\203\210\343\203\203\343\203\227\343\203\232\343\203\274\343\202\270.html" index 53d4777..d42b1c6 100644 --- "a/htmlsource/\343\203\210\343\203\203\343\203\227\343\203\232\343\203\274\343\202\270.html" +++ "b/htmlsource/\343\203\210\343\203\203\343\203\227\343\203\232\343\203\274\343\202\270.html" @@ -18,7 +18,8 @@