1
0
mirror of https://github.com/algora-io/tv.git synced 2025-03-27 20:20:18 +02:00

use password input for destination stream key

This commit is contained in:
zafer 2024-05-20 16:21:17 +03:00
parent ab0bd74945
commit 04703fccf3

@ -81,7 +81,12 @@ defmodule AlgoraWeb.SettingsLive do
</.header>
<.simple_form for={@destination_form} phx-submit="add_destination">
<.input field={@destination_form[:rtmp_url]} label="RTMP URL" />
<.input field={@destination_form[:stream_key]} label="Stream key" autocomplete="off" />
<.input
field={@destination_form[:stream_key]}
label="Stream key"
autocomplete="off"
type="password"
/>
<:actions>
<.button>Add Destination</.button>
</:actions>