git.sophuwu.com > mailboxxer   
              34
            
             <!DOCTYPE html>
<html lang="en" style="background-color: transparent;">
<head>
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="font.css">
    <title>Samael</title>
    <script>
        function ToggleDomain() {
            let dom = document.getElementById("domain").value;
            if (dom === "@sophuwu.site") {
                document.getElementById("domain").value = "@skisiel.com";
            } else {
                document.getElementById("domain").value = "@sophuwu.site";
            }
        }
    </script>
</head>
<body style="background-color: transparent;">
<form style="height: 100%; width: 100%; background-color: transparent;" action="/send" method="post">
    <div style="height: calc(100% - 45px); background-color: transparent; border: none;" class="coldiv">
    <span style="background: #242424; " class="inputlike topin">Compose</span>
    <input class="botin topin" type="text" name="recipient" autocomplete="off" placeholder="Recipient" />
    <input class="topin botin" type="text" name="subject" autocomplete="off" placeholder="Subject" />
    <textarea class="inputlike topin botin" style="height: 100%;" autocomplete="off" name="body" wrap="soft"></textarea>
    </div>
    <div class="sidebyside" style="background-color: transparent; padding: 0 2px;">
    <input class="botin leftin" style="width: 140px;" autocomplete="off" type="text" name="from" placeholder="From" />
    <input type="text" readonly class="rightin botin leftin" id="domain" style="width: 110px; cursor: pointer;" onclick="ToggleDomain()" value="@sophuwu.site"/>
    <span class="inputlike leftin botin rightin"><br></span>
    <input type="submit" class="inputlike rightin botin" style="width: 80px; cursor: pointer;" value="Send" />
    </div>
</form>
</body>
</html>