Skip to content

Commit

Permalink
Remove tailwind and add bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Sajad Jalilian committed Jan 4, 2024
1 parent 4531c23 commit 1e17ef8
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 1,458 deletions.
34 changes: 16 additions & 18 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<html>

<head>
<script src="functions.js"></script>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VL6DSZLQG3"></script>
Expand All @@ -12,46 +13,43 @@

gtag('config', 'G-VL6DSZLQG3');
</script>

<script src="https://unpkg.com/[email protected]/dist/cdn.min.js" defer></script>
<script src="functions.js"></script>

<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>

<title>محاسبه‌گر ارزش واقعی پول امروز</title>
<link href="tailwind.css" rel="stylesheet">

</head>

<body>

<div class="container mx-auto p-4">
<div class="container pt-5" dir="rtl">

<h1 class="text-3xl font-bold mb-4">پول واقعی</h1>
<p class="text-gray-700">مبلغ را به تومان و تاریخ را به شمسی وارد کنید</p>
<h1 class="">پول واقعی</h1>
<p class="">مبلغ را به تومان و تاریخ را به شمسی وارد کنید</p>

<div
x-data="{ data: fetchData() , calcResult : '', rawData : '', userInputRial : '', userInputDate : '' , lastUsdValue : '', usdValueOnDate: ''}">
<input type="number" x-model="userInputRial" placeholder="مبلغ به تومان">
<input type="text" x-model="userInputDate" placeholder="1399/01/01">

<button x-on:click="calcResult = calculateSum(userInputRial, userInputDate)"
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 border border-blue-700 rounded">
<button x-on:click="calcResult = calculateSum(userInputRial, userInputDate)" class="btn btn-primary">
محاسبه‌
</button>

<br>

<p>آخرین قیمت دلار: <span x-text="calcResult.lastUsdValue" class="text-red-500" type="number"></span></p>
<p>قیمت دلار در تاریخی که وارد شده: <span x-text="calcResult.usdValueOnDate" class="text-red-500"
type="number"></span></p>

<p>ارزش مبلغ وارد شده در امروز: <span x-text="calcResult.value" class="text-red-500" type="number"></span>
<p>آخرین قیمت دلار: <span x-text="calcResult.lastUsdValue" class="text-primary"></span></p>
<p>قیمت دلار در تاریخی که وارد شده: <span x-text="calcResult.usdValueOnDate" class="text-primary"></span>
</p>

<br>
<p>ارزش مبلغ وارد شده در امروز: <span x-text="calcResult.value" class="text-danger" type="number"></span>
</p>

<button x-on:click="rawData = showData()"
class="bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 border border-blue-700 rounded">
<button x-on:click="rawData = showData()" class="btn btn-primary">
نمایش تمام داده‌ها
</button>
<template x-if="rawData">
Expand Down
Loading

0 comments on commit 1e17ef8

Please sign in to comment.