|  | @@ -9,10 +9,10 @@
 | 
	
		
			
				|  |  |      { path }: PageData,
 | 
	
		
			
				|  |  |      session: AppSession
 | 
	
		
			
				|  |  |    ) {
 | 
	
		
			
				|  |  | -    const mdResult = await this.fetch("/rules/md");
 | 
	
		
			
				|  |  | +    const mdResult = await this.fetch("/rules/md", { credentials: "include" });
 | 
	
		
			
				|  |  |      const md = (await mdResult.json()) as Option<MDText, { error: string }>;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -    const verifyReusult = await this.fetch("/rules/verify");
 | 
	
		
			
				|  |  | +    const verifyReusult = await this.fetch("/rules/verify", { credentials: "include" });
 | 
	
		
			
				|  |  |      const verify = (await verifyReusult.json()) as VerifyInfo;
 | 
	
		
			
				|  |  |      return {
 | 
	
		
			
				|  |  |        rulesText: md.ok ? md.text : "",
 | 
	
	
		
			
				|  | @@ -49,6 +49,7 @@
 | 
	
		
			
				|  |  |    async function onVerified(e: { key: string }) {
 | 
	
		
			
				|  |  |      state = State.Verify;
 | 
	
		
			
				|  |  |      const result = await fetch("/rules/verify", {
 | 
	
		
			
				|  |  | +      credentials: "include",
 | 
	
		
			
				|  |  |        method: "post",
 | 
	
		
			
				|  |  |        headers: {
 | 
	
		
			
				|  |  |          Accept: "application/json",
 |