main.html 1.38 KB
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>HomePurchaseAgePrediction</title>
    <link rel="stylesheet" href="css/style.css" />
    <link rel="preconnect" href="https://fonts.gstatic.com" />
    <link
      href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;500;900&display=swap"
      rel="stylesheet"
    />
  </head>

  <body>
    <main>
      <h1>Home Purchase Age Prediction</h1>
      <h4>
        사용자의 위치기반으로 집 구매 시기를 예측해드립니다 (사용자 위치 근처의
        집을 찾아드립니다)
      </h4>
      <form action="/geolocation" method="POST">
        <div>
          연봉(단위:만 원)
          <input
            type="text"
            id="salary"
            name="salary"
            placeholder="월소득을 숫자로 입력해주세요."
          />
        </div>
        <div>
          지출(단위:만 원)
          <input
            type="text"
            id="expenditure"
            name="expenditure"
            placeholder="지출을 숫자로 입력해주세요."
          />
        </div>
        <div>
          <input class="btn" type="submit" value="SUBMIT" />
        </div>
      </form>
    </main>
  </body>
</html>