File size: 3,361 Bytes
aefc9ef
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fast-DetectGPT</title>
    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 20px;

            background-color: #f9f9f9;

        }

        .container {

            max-width: 700px;

            margin: auto;

            background: #ffffff;

            border-radius: 8px;

            padding: 20px;

            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

        }

        h1 {

            text-align: center;

            color: #333;

        }

        textarea {

            width: 100%;

            height: 150px;

            margin: 15px 0;

            padding: 10px;

            border: 1px solid #ccc;

            border-radius: 5px;

            font-size: 16px;

        }

        button {

            display: block;

            width: 100%;

            padding: 10px;

            background-color: #007bff;

            color: white;

            border: none;

            border-radius: 5px;

            font-size: 16px;

            cursor: pointer;

        }

        button:hover {

            background-color: #0056b3;

        }

        #result {

            margin-top: 20px;

            padding: 15px;

            background-color: #f1f1f1;

            border: 1px solid #ddd;

            border-radius: 5px;

        }

        .error {

            color: red;

        }

    </style>
</head>
<body>
    <div class="container">
        <h1>Fast-DetectGPT</h1>
        <form id="analyzeForm">
            <textarea name="text" placeholder="Enter your text here..." required></textarea>
            <button type="submit">Analyze</button>
        </form>
        <div id="result"></div>
    </div>

    <script>

        document.getElementById('analyzeForm').addEventListener('submit', function (e) {

            e.preventDefault(); // Formun varsayılan davranışını durdurur.

            const formData = new FormData(this);

            const resultDiv = document.getElementById('result');



            // Önce sonucu temizle

            resultDiv.textContent = '';



            // POST isteği gönder

            fetch('/analyze', {

                method: 'POST',

                headers: {

                    'Content-Type': 'application/json',

                },

                body: JSON.stringify({

                    text: formData.get('text'),

                }),

            })

                .then(response => response.json())

                .then(data => {

                    if (data.error) {

                        resultDiv.innerHTML = `<p class="error">Error: ${data.error}</p>`;

                    } else {

                        resultDiv.innerHTML = `

                            <p><strong>Criterion:</strong> ${data.criterion}</p>

                            <p><strong>Probability of being machine-generated:</strong> ${data.probability_machine_generated}</p>

                        `;

                    }

                })

                .catch(err => {

                    resultDiv.innerHTML = `<p class="error">An error occurred: ${err.message}</p>`;

                });

        });

    </script>
</body>
</html>