rustwall 0.1.1

Advanced Rust-based firewall and security system with DDoS protection, CAPTCHA verification, and specialized Tor network security features
Documentation
<!-- Clock CAPTCHA Widget - Include this in your forms -->
<link rel="stylesheet" href="/static/css/captcha_widget.css">
<div class="clock-captcha-widget">
    <label for="captcha-time">
        Security Check: What time is shown on the clock?
    </label>
    
    <div class="captcha-image-container">
        <img src="/captcha/image/{{ session_id }}" alt="Clock CAPTCHA" width="150" height="150">
    </div>
    
    <div class="time-input-container">
        <input type="number" name="captcha_hour" min="1" max="12" placeholder="Hour" required>
        <span>:</span>
        <input type="number" name="captcha_minute" min="0" max="59" placeholder="Min" required>
    </div>
    
    <input type="hidden" name="captcha_session_id" value="{{ session_id }}">
    
    <div class="refresh-container">
        <a href="/captcha/form" class="refresh-link">🔄 Refresh CAPTCHA</a>
    </div>
</div>