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
+6 -1
View File
@@ -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>