Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
このファイルは、Web プロジェクトの公開 / パッケージ処理で使用されます。この MSBuild ファイルを編集すると、
この処理の動作をカスタマイズできます。詳細については、https://go.microsoft.com/fwlink/?LinkID=208121 を参照してください。
-->
<Project>
<PropertyGroup>
<WebPublishMethod>MSDeploy</WebPublishMethod>
<ResourceId>/subscriptions/b380e984-259f-4a7b-9138-6d579fa434f0/resourcegroups/appdev20230111115022ResourceGroup/providers/Microsoft.Web/sites/appdev20230111115022</ResourceId>
<ResourceGroup>appdev20230111115022ResourceGroup</ResourceGroup>
<PublishProvider>AzureWebSite</PublishProvider>
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
<LastUsedPlatform>Any CPU</LastUsedPlatform>
<SiteUrlToLaunchAfterPublish>https://appdev20230111115022.azurewebsites.net</SiteUrlToLaunchAfterPublish>
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
<ExcludeApp_Data>false</ExcludeApp_Data>
<ProjectGuid>e9a30693-f23c-4e66-8348-babf5b3eff5d</ProjectGuid>
<MSDeployServiceURL>appdev20230111115022.scm.azurewebsites.net:443</MSDeployServiceURL>
<DeployIisAppPath>appdev20230111115022</DeployIisAppPath>
<RemoteSitePhysicalPath />
<SkipExtraFilesOnServer>true</SkipExtraFilesOnServer>
<MSDeployPublishMethod>WMSVC</MSDeployPublishMethod>
<EnableMSDeployBackup>true</EnableMSDeployBackup>
<EnableMsDeployAppOffline>true</EnableMsDeployAppOffline>
<UserName>$appdev20230111115022</UserName>
<_SavePWD>true</_SavePWD>
<_DestinationType>AzureWebSite</_DestinationType>
<InstallAspNetCoreSiteExtension>false</InstallAspNetCoreSiteExtension>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
このファイルは、Web プロジェクトの公開 / パッケージ処理で使用されます。この MSBuild ファイルを編集すると、
この処理の動作をカスタマイズできます。詳細については、https://go.microsoft.com/fwlink/?LinkID=208121 を参照してください。
-->
<Project>
<PropertyGroup>
<TimeStampOfAssociatedLegacyPublishXmlFile />
<EncryptedPassword>AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAposbCphR0EG7kjC9H9eB9gAAAAACAAAAAAAQZgAAAAEAACAAAAANb/Jf0mdeKn1qGezun33HI/1lzH3OLkSW9cFEB30YZQAAAAAOgAAAAAIAACAAAAAhFCf7ChU+Jzru1aroUurmiXeLu/Vb8JJ0GknLBSKHqoAAAAB1Txi8R46vxlzb1pORzYKMXoDGzQjyNXbVKpi8G1+QHbZ8rg4b7RPeGNFzUNBB52E1OIi61KueGla6bhWaK5K87L3vRg1gq/A2mvOo1fIe65aTjZsWlRfLbPx10RPkDgBOEwagpq+GzSFeCDRjg4bkCxGU2zVoDy6wgTSb0P+3M0AAAABXMhK0gcsxDNGHiwVjJi+tk11aavF+v/roRRlzCdl9TBi5elbvhDna4I05VPGpeonFTssjEU5IurXEhARt6nRd</EncryptedPassword>
<History>True|2023-01-11T02:53:34.9445958Z;</History>
<LastFailureDetails />
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -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')]"
}
}
]
}
}
}
]
}
1 change: 1 addition & 0 deletions appdev/appdev/appdev.csproj.user
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
<View_SelectedScaffolderCategoryPath>root/Common/MVC/View</View_SelectedScaffolderCategoryPath>
<Controller_SelectedScaffolderID>MvcControllerEmptyScaffolder</Controller_SelectedScaffolderID>
<Controller_SelectedScaffolderCategoryPath>root/Common/MVC/Controller</Controller_SelectedScaffolderCategoryPath>
<NameOfLastUsedPublishProfile>C:\Users\81808\Documents\GitHub\E_team\appdev\appdev\Properties\PublishProfiles\appdev20230111115022 - Web Deploy.pubxml</NameOfLastUsedPublishProfile>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -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
Binary file modified appdev/appdev/obj/Debug/net6.0/appdev.assets.cache
Binary file not shown.
Binary file not shown.
98 changes: 98 additions & 0 deletions htmlsource/admin_login.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="ja">

<head>
<meta charset="UTF-8">
<title>login_page_mock</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="ここにサイト説明を入れます">
<link rel="stylesheet" href="css/style.css">
<script async src="js/passchange_view.js"></script>
</head>

<body>

<header>

</header>

<div id="contents">

<main>

<section>

<h2>ログイン画面</h2>

<!-- フォームの情報はここからです -->
<form name="form1" enctype="multipart/form-data" method="post" action="">
<!-- <?php echo $_SERVER["REQUEST_URI"];?> -->
<input type="hidden" name="mode" value="confirm">
<table class="ta1">
<!--<tr><td colspan="2" class="auto"><strong>確認画面</strong></td></tr>-->
<!-- 入力/確認 -->

<tr>
<td style="text-align:right; padding-right: 6%;">
<font size="5">ID</font>
</td>
<td>
<input type="text" name="id" value="" style="font-size:30px;">
</td>
<td><input type="hidden" name="space" value=""></td>
</tr>
<tr>
<td style="text-align:right;">
<font size="5">パスワード</font>
</td>
<td>
<input type="password" name="password" value="" id="input_pass" style="font-size:30px;">
<button id="btn_passview">表示</button>
</td>
<td><input type="hidden" name="space" value=""></td>
</tr>

</table>

<p class="btn">
<input type="submit" value="ログイン">
&nbsp;
</p>

</form>
<!-- フォームの情報はここまでです -->

</section>

</main>

<!--/#footermenu-->

<footer>
<small>Copyright&copy; <a href="index.html">KIDS CLUB</a> All Rights Reserved.</small>
<span class="pr"><a href="https://template-party.com/" target="_blank">《Web
Design:Template-Party》</a></span>
</footer>

</section>
<!--/#footer-->

</div>
<!--/#contents-->

<!--jQueryの読み込み-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>

<!--biz56用のスクリプト-->
<script src="js/main.js"></script>

<!--ページの上部へ戻るボタン-->
<div class="pagetop"><a href="#"><i class="fas fa-angle-double-up"></i></a></div>

<!--パララックス(inview)-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/protonet-jquery.inview/1.1.2/jquery.inview.min.js"></script>
<script src="js/jquery.inview_set.js"></script>

</body>

</html>
Loading